Skip to content

Commit

Permalink
Docs (examples): Use /bin/bash as entrypoint in `docs/samples/docke…
Browse files Browse the repository at this point in the history
…r-compose/docker-compose.bash-c.yml` (#163)

Doing so more closely mirrors the conventions of container entrypoints in containerized setups.
  • Loading branch information
joeltimothyoh authored Nov 14, 2023
1 parent 5e36641 commit b51827d
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions docs/samples/docker-compose/docker-compose.bash-c.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ services:
tty: true
entrypoint:
- /bin/bash
- -c
command:
- -c
- |
set -e
printenv
Expand All @@ -26,8 +26,8 @@ services:
tty: true
entrypoint:
- /bin/bash
- -c
command:
- -c
- |
set -e
printenv
Expand All @@ -43,8 +43,8 @@ services:
tty: true
entrypoint:
- /bin/bash
- -c
command:
- -c
- |
set -e
printenv
Expand All @@ -60,8 +60,8 @@ services:
tty: true
entrypoint:
- /bin/bash
- -c
command:
- -c
- |
set -e
printenv
Expand All @@ -76,8 +76,8 @@ services:
tty: true
entrypoint:
- /bin/bash
- -c
command:
- -c
- |
set -e
printenv
Expand All @@ -92,8 +92,8 @@ services:
tty: true
entrypoint:
- /bin/bash
- -c
command:
- -c
- |
set -e
printenv
Expand All @@ -108,8 +108,8 @@ services:
tty: true
entrypoint:
- /bin/bash
- -c
command:
- -c
- |
set -e
printenv
Expand Down

0 comments on commit b51827d

Please sign in to comment.