Skip to content

Commit

Permalink
Improved Docker Compose spec compliance (#351)
Browse files Browse the repository at this point in the history
  • Loading branch information
wolveix committed Oct 2, 2024
1 parent 7e1ae65 commit 598a037
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ services:
- STEAMBETA=false
restart: unless-stopped
healthcheck:
test: bash /healthcheck.sh
test: ["CMD", "bash", "/healthcheck.sh"]
interval: 30s
timeout: 10s
retries: 3
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ services:
- STEAMBETA=false
restart: unless-stopped
healthcheck:
test: bash /healthcheck.sh
test: ["CMD", "bash", "/healthcheck.sh"]
interval: 30s
timeout: 10s
retries: 3
Expand Down

0 comments on commit 598a037

Please sign in to comment.