Skip to content

Commit

Permalink
Update volume paths in docker-compose.yml for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
leeturner committed Dec 16, 2024
1 parent 664e55c commit 9205c8e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/intro/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ services:
- "host.docker.internal:host-gateway"
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- ..:/app/
- ../../app/
- .:/app/example/
command: uvicorn product_mock.overview_service:app --host=0.0.0.0 --port=5001

Expand All @@ -24,6 +24,6 @@ services:
ports:
- "5002:5002"
volumes:
- ..:/app/
- ../../:/app/
- .:/app/example/
command: uvicorn product_mock.products_service:app --host=0.0.0.0 --port=5002

0 comments on commit 9205c8e

Please sign in to comment.