Skip to content

Commit

Permalink
Match compose.yaml to manual setup
Browse files Browse the repository at this point in the history
  • Loading branch information
davidianstyle committed Mar 2, 2024
1 parent 7f37274 commit 84c0750
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ services:
ports:
- "80:8080" # Map host's port 80 to container's port 8080
networks:
- network
- api-bridge
depends_on:
db:
condition: service_healthy
Expand All @@ -23,7 +23,7 @@ services:
ports:
- "3306:3306"
networks:
- network
- api-bridge
healthcheck:
test: ["CMD", "mysqladmin" ,"ping", "-h", "localhost"]
timeout: 5s
Expand All @@ -32,5 +32,5 @@ services:
- .env

networks:
network:
api-bridge:
driver: bridge

0 comments on commit 84c0750

Please sign in to comment.