tldtest.net/docker-compose.yml
2024-03-26 22:01:39 +01:00

21 lines
381 B
YAML

version: '3.11'
services:
web:
build:
context: .
dockerfile: Dockerfile
command: gunicorn tldtest.wsgi:application --bind 172.17.0.1:8000 --timeout 600
ports:
- 8000:8000
depends_on:
- db
db:
image: postgres:15
volumes:
- postgres_data:/var/lib/postgresql/data/
env_file:
- env.prod.db
volumes:
postgres_data: