| 12345678910111213141516171819202122232425 |
- version: "3.9"
- services:
- messaging-prod:
- container_name: senslog_messaging
- image: senslog/messaging
- build:
- target: production
- context: .
- args:
- configFile: config/config.docker.release.yaml
- messaging-dev:
- container_name: senslog_messaging_dev
- image: senslog/messaging-dev
- build:
- target: dev-debug
- context: .
- args:
- configFile: config/config.docker.dev.yaml
- env_file:
- - docker.dev.env
- ports:
- - "9090:9090"
- - "5005:5005"
|