You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

23 lines
557 B

version: "3.8"
services:
mosquitto:
image: eclipse-mosquitto
container_name: iot-mosquitto
restart: always
volumes:
- "./config:/mosquitto/config"
- "./data:/mosquitto/data"
- "./log:/mosquitto/log"
ports:
- '1883:1883'
- '9001:9001'
cap_add:
- NET_ADMIN
extractor:
build: ./extractor-image
container_name: iot-energy-extractor
restart: always
volumes:
- "./energy-data:/data"