docker-compose для дев окружения

This commit is contained in:
Первов Артем
2026-07-03 21:21:21 +03:00
parent c702946393
commit 0e2a7eeeec

21
docker-compose.dev.yml Normal file
View File

@@ -0,0 +1,21 @@
services:
drill-cloud-v3-dev:
container_name: drill-cloud-v3${branch:+-${branch}}
build: .
restart: unless-stopped
environment:
NODE_ENV: production
BRANCH: ${branch:-}
PORT: ${PORT}
DATABASE_URL: ${DATABASE_URL}
INGEST_API_KEY: ${INGEST_API_KEY}
INGEST_DEBUG_LOG: ${INGEST_DEBUG_LOG:-}
CURRENT_EVENTS_POLL_MS: ${CURRENT_EVENTS_POLL_MS}
expose:
- "3101"
networks:
- proxy
networks:
proxy:
external: true