# 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 oe_gateway: image: cloud21.cvtt.vpn:5500/oe_gateway:latest container_name: oe_gateway environment: CONFIG_SERVICE: ${CONFIG_SERVICE:-cloud16.cvtt.vpn:6789} OEGW_ADD_ARGS: ${OEGW_ADD_ARGS:-} volumes: - ./config:/config - ./logs:/logs depends_on: - redis redis: image: redis:latest container_name: redis ports: - "16379:6379" volumes: - ./data/redis:/data