cbrfWorker/deployments/dev/docker-compose.yaml
2023-06-22 11:26:42 +03:00

27 lines
590 B
YAML

version: "3.3"
services:
cbrfworker-app:
hostname: cbrfworker-service
container_name: cbrfworker-service
tty: true
build:
context: ../../.
dockerfile: Dockerfile
target: test
environment:
- IS_PRODUCTION=false
- DEVELOPMENT=true
- APP_NAME=croupierWorkerQuotes
- APP_ADDR=0.0.0.0:3131
- DATABASE_URI=mongodb://test:test@mongo:27017/croupier?authSource=admin&authMechanism=SCRAM-SHA-1
- DATABASE_TABLE=croupier
- COLLECTION_NAME=quote
ports:
- 3131:3131
networks:
- dev
networks:
dev: