diff options
| author | ckonstanski <kostcarl@isu.edu> | 2026-08-13 14:41:50 -0600 |
|---|---|---|
| committer | ckonstanski <kostcarl@isu.edu> | 2026-08-13 14:41:50 -0600 |
| commit | 5a06345fb6cbb2516dbaf3b1398907ef7e64545e (patch) | |
| tree | d3dbab8a6e17a3484292dd1b0fb428945263d3fa /ci/docker-compose.yaml.example | |
| parent | b1ad11410e0f9ddfb5c3543eb9c27bf3e9661a86 (diff) | |
CI stuff
Diffstat (limited to 'ci/docker-compose.yaml.example')
| -rw-r--r-- | ci/docker-compose.yaml.example | 24 |
1 files changed, 14 insertions, 10 deletions
diff --git a/ci/docker-compose.yaml.example b/ci/docker-compose.yaml.example index ecb6836..be47b0f 100644 --- a/ci/docker-compose.yaml.example +++ b/ci/docker-compose.yaml.example @@ -1,35 +1,36 @@ services: bogenherr: image: bogenherr + container_name: bogenherr tty: true build: context: . args: - OLO_USERNAME: ${OLO_USERNAME} - OLO_GROUPNAME: ${OLO_GROUPNAME} - OLO_UID: ${OLO_UID} - OLO_GID: ${OLO_GID} + USER_USERNAME: ${USER_USERNAME} + USER_GROUPNAME: ${USER_GROUPNAME} + USER_UID: ${USER_UID} + USER_GID: ${USER_GID} network_mode: "host" container_name: bogenherr volumes: - type: bind source: ~/.m2 - target: /home/${OLO_USERNAME}/.m2 + target: /home/${USER_USERNAME}/.m2 - type: bind source: ~/.bashrc - target: /home/${OLO_USERNAME}/.bashrc + target: /home/${USER_USERNAME}/.bashrc - type: bind source: ~/.bash_history - target: /home/${OLO_USERNAME}/.bash_history + target: /home/${USER_USERNAME}/.bash_history - type: bind source: ~/.vimrc - target: /home/${OLO_USERNAME}/.vimrc + target: /home/${USER_USERNAME}/.vimrc - type: bind source: ~/.gitconfig - target: /home/${OLO_USERNAME}/.gitconfig + target: /home/${USER_USERNAME}/.gitconfig - type: bind source: ~/.ssh - target: /home/${OLO_USERNAME}/.ssh + target: /home/${USER_USERNAME}/.ssh - type: bind source: /etc/hosts target: /etc/hosts @@ -37,6 +38,9 @@ services: source: /etc/ssh target: /etc/ssh - type: bind + source: /etc/bogenherr + target: /etc/bogenherr + - type: bind source: /var/log/lisp target: /var/log/lisp environment: |
