From 9a263fd72e0e4186c9aaaa3d6bc34eec3e273370 Mon Sep 17 00:00:00 2001 From: the-dilophosaurus-who-couldnt-spit Date: Mon, 10 Feb 2025 15:16:54 -0700 Subject: [PATCH 1/3] removed build context --- compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compose.yml b/compose.yml index 4066f41..9a61de4 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/bash"] volumes: - /:/host - /var/run/docker.sock:/var/run/docker.sock From 1d49fe9c13ae711c5352cf8603df65b85660ea7f Mon Sep 17 00:00:00 2001 From: the-dilophosaurus-who-couldnt-spit Date: Mon, 10 Feb 2025 15:20:01 -0700 Subject: [PATCH 2/3] revmoved bash --- compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compose.yml b/compose.yml index 9a61de4..2e0c283 100644 --- a/compose.yml +++ b/compose.yml @@ -25,7 +25,7 @@ services: - TESTVAR=${TESTVAR:-app2} stdin_open: true tty: true - command: ["/bin/bash"] + command: ["/bin/"] volumes: - /:/host - /var/run/docker.sock:/var/run/docker.sock From e99e82a677afdde1aa9a0bcd0c5405b24817d58e Mon Sep 17 00:00:00 2001 From: the-dilophosaurus-who-couldnt-spit Date: Mon, 10 Feb 2025 15:46:05 -0700 Subject: [PATCH 3/3] Group 10 pull request for ensf400_w25 branch --- git-compose.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 git-compose.yml 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"