diff options
| author | ckonstanski <kostcarl@isu.edu> | 2026-08-13 13:48:29 -0600 |
|---|---|---|
| committer | ckonstanski <kostcarl@isu.edu> | 2026-08-13 13:48:29 -0600 |
| commit | c36cf5292c71db74dbb24d4385ed3070a4d91577 (patch) | |
| tree | 9f37d82d203745f21f1281571874fa7419aa7d23 /ci/docker-compose.yaml.example | |
| parent | 3e2e94afb69b6bc6213b58daa36f350205b5086c (diff) | |
CI stuff
Diffstat (limited to 'ci/docker-compose.yaml.example')
| -rw-r--r-- | ci/docker-compose.yaml.example | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/ci/docker-compose.yaml.example b/ci/docker-compose.yaml.example index ecb6836..2ee776d 100644 --- a/ci/docker-compose.yaml.example +++ b/ci/docker-compose.yaml.example @@ -1,35 +1,35 @@ services: - bogenherr: - image: bogenherr + resume: + image: resume 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 + container_name: resume 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 |
