Files
potato-mesh/docker-compose.prod.yml

38 lines
665 B
YAML

# Production overrides for docker-compose.yml
services:
web:
build:
context: .
dockerfile: web/Dockerfile
target: production
environment:
DEBUG: 0
restart: always
web-bridge:
build:
context: .
dockerfile: web/Dockerfile
target: production
environment:
DEBUG: 0
restart: always
ingestor:
build:
context: .
dockerfile: data/Dockerfile
target: production
environment:
DEBUG: 0
restart: always
ingestor-bridge:
build:
context: .
dockerfile: data/Dockerfile
target: production
environment:
DEBUG: 0
restart: always