diff --git a/compose.yml b/compose.yml index 4066f41..2e0c283 100644 --- a/compose.yml +++ b/compose.yml @@ -25,7 +25,7 @@ services: - TESTVAR=${TESTVAR:-app2} stdin_open: true tty: true - command: ["/bin/zsh"] + command: ["/bin/"] volumes: - /:/host - /var/run/docker.sock:/var/run/docker.sock diff --git a/git-compose.yml b/git-compose.yml new file mode 100644 index 0000000..d527053 --- /dev/null +++ b/git-compose.yml @@ -0,0 +1,12 @@ +version: '1' +services: + + # Building and testing environment + app: + image: ghcr.io/growlf/toolbox:testing + stdin_open: true + tty: true + command: ["/bin/zsh"] + volumes: + - /var/run/docker.sock:/var/run/docker.sock + network_mode: "host"