Files
website/docker-compose.yml

30 lines
468 B
YAML

version: '3.9'
services:
web:
build: .
image: systades_app:latest
container_name: systades_app
restart: always
env_file:
- .env
ports:
- "5000:5000"
volumes:
- .:/app:ro
depends_on:
- db
db:
image: postgres:15-alpine
container_name: systades_db
restart: always
env_file:
- .env
volumes:
- db_data:/var/lib/postgresql/data
ports:
- "5432:5432"
volumes:
db_data: