Skip to content

Commit 72e6345

Browse files
authored
Update menu.sh
Version "2" of the docker-compose.yml cannot use "Healthcheck" instructions. Only 2.1+ can do this. I propose we upgrade the version to at least 3 so we can incorporate HealthCheck commands and any other new features as appropriate. We're running the latest version of docker - the latest version of the docker-compose.yml is 3.7 - unless there's a really, really good reason to use an older format of the docker-compose.yml, can we please update it to at least 3.0, preferably 3.7?
1 parent 1f146f0 commit 72e6345

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

menu.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ case $mainmenu_selection in
231231
#if no container is selected then dont overwrite the docker-compose.yml file
232232
if [ -n "$container_selection" ]; then
233233
touch docker-compose.yml
234-
echo "version: '2'" >docker-compose.yml
234+
echo "version: '3.7'" >docker-compose.yml
235235
echo "services:" >>docker-compose.yml
236236

237237
#set the ACL for the stack

0 commit comments

Comments
 (0)