Skip to content

Commit b22d184

Browse files
committed
Docker Compose: Use an entrypoint for base instead of a command.
1 parent 35dbd49 commit b22d184

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

tutorials/accelerated-python/brev/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ services:
2727
user: root
2828
working_dir: *working-dir
2929
restart: "no"
30-
command: ["/update-git-branch.bash"]
30+
entrypoint: ["/update-git-branch.bash"]
3131
jupyter:
3232
image: *image
3333
depends_on:

tutorials/cuda-cpp/brev/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ services:
2525
- BREV_ENV_ID
2626
user: root
2727
working_dir: *working-dir
28-
command: ["/update-git-branch.bash"]
28+
entrypoint: ["/update-git-branch.bash"]
2929
restart: "no"
3030
jupyter:
3131
image: *image

tutorials/stdpar/brev/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ services:
2525
- BREV_ENV_ID
2626
user: root
2727
working_dir: *working-dir
28-
command: ["/update-git-branch.bash"]
28+
entrypoint: ["/update-git-branch.bash"]
2929
restart: "no"
3030
jupyter:
3131
image: *image

0 commit comments

Comments
 (0)