| 12345678910111213141516171819202122232425262728 |
- version: '3.7'
- services:
- lws1:
- container_name: loraWanSenslog1
- build:
- dockerfile: Dockerfile
- context: .
- args:
- MAVEN_PROFILE: LoraWanSenslog1
- restart: always
- environment:
- APP_PARAMS: -cf config/lorawanSenslog1.yaml
- fcs2:
- container_name: fieldclimateSenslog2
- build:
- dockerfile: Dockerfile
- context: .
- args:
- MAVEN_PROFILE: FieldClimateSenslog2
- ports:
- - "5005:5005"
- restart: always
- environment:
- APP_PARAMS: -cf config/test.yaml
- DEBUG: "true"
|