Files
cloud-v3/docker-compose.yml

23 lines
544 B
YAML

services:
drill-cloud-v3:
container_name: drill-cloud-v3
build: .
restart: unless-stopped
environment:
NODE_ENV: production
PORT: ${PORT}
DATABASE_URL: ${DATABASE_URL}
CORS_ALLOWED_ORIGINS: ${CORS_ALLOWED_ORIGINS}
INGEST_API_KEY: ${INGEST_API_KEY}
PG_POOL_MAX: ${PG_POOL_MAX}
INGEST_MAX_BATCH_SIZE: ${INGEST_MAX_BATCH_SIZE}
CURRENT_EVENTS_POLL_MS: ${CURRENT_EVENTS_POLL_MS}
ports:
- "${PORT}:${PORT}"
networks:
- proxy
networks:
proxy:
external: true