Skip to content

Commit

Permalink
build(docker-compose.yaml): remove web dependency from db
Browse files Browse the repository at this point in the history
remove depends_on from web to avoid that docker pulls postgresql image even if sqlite is requested
  • Loading branch information
Michele-Alberti committed Dec 29, 2023
1 parent 6e03408 commit 55f9b38
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ services:
# dockerfile: ./docker/web/Dockerfile.web
volumes:
- ./shared_data:/app/shared_data
depends_on:
- db
# depends_on:
# - db
expose:
- ${PORT} # Expose port from env variable to an ephemeral port (used by load balancer)
environment:
Expand Down

0 comments on commit 55f9b38

Please sign in to comment.