feat: connect the production Docker compose stack to the web server network

This commit is contained in:
Matouš Volf 2024-09-13 07:22:33 +02:00
parent 588eb63201
commit 602713a00c

View File

@ -5,6 +5,8 @@ services:
restart: always
ports: [ "8000:8000" ]
depends_on: [ "db" ]
networks:
- web-server-network
db:
image: postgres:16.4-bookworm
@ -18,3 +20,7 @@ services:
volumes:
db_data:
networks:
web-server-network:
external: true