22 lines
490 B
YAML
22 lines
490 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}
|
|
CURRENT_EVENTS_POLL_MS: ${CURRENT_EVENTS_POLL_MS}
|
|
ports:
|
|
- "${PORT}:${PORT}"
|
|
networks:
|
|
- proxy
|
|
|
|
networks:
|
|
proxy:
|
|
external: true
|