version: "3.7" services: backend: build: context: . dockerfile: app/Dockerfile.prod volumes: - static_volume:/app/staticfiles environment: ADMIN_USERNAME: "admin" ADMIN_PASSWORD: "password" ADMIN_EMAIL: "admin@example.com" DATABASE_URL: "postgres://doccano:doccano@postgres:5432/doccano?sslmode=disable" ALLOW_SIGNUP: "False" DEBUG: "False" depends_on: - postgres networks: - network-backend - network-frontend nginx: build: context: . dockerfile: nginx/Dockerfile environment: API_URL: "http://backend:8000" GOOGLE_TRACKING_ID: "" volumes: - static_volume:/static ports: - 80:80 depends_on: - backend networks: - network-frontend postgres: image: postgres:13.1-alpine volumes: - postgres_data:/var/lib/postgresql/data/ environment: POSTGRES_USER: "doccano" POSTGRES_PASSWORD: "doccano" POSTGRES_DB: "doccano" networks: - network-backend volumes: postgres_data: static_volume: networks: network-backend: network-frontend: