docker_dev/microservices/docker-compose.yml

23 lines
537 B
YAML

# CVTT Microservices
services:
md_gateway:
image: cloud21.cvtt.vpn:5500/md_gateway:latest
container_name: md_gateway
environment:
CONFIG_SERVICE: ${CONFIG_SERVICE:-cloud16.cvtt.vpn:6789}
MDGW_ADD_ARGS: ${MDGW_ADD_ARGS:-}
volumes:
- ./config:/config
- ./logs:/logs
depends_on:
- redis
redis:
image: redis:latest
container_name: redis
ports:
- "16379:6379"
volumes:
- ./data/redis:/data