-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yaml
76 lines (69 loc) · 2.26 KB
/
docker-compose.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# docker-compose.yml
# docker-compose file to run the mqtt broker and the web interface for the led controller
# the mqtt broker is running in a container and the web interface is running in another container
# the containers are connected to a network to communicate with each other
# the web interface is built from the Dockerfile in the current directory
# the web interface is mounted to the container to allow for live changes to the code
# to run the containers use the command: docker-compose up
# to stop the containers use the command: docker-compose down
# create a network for the containers to communicate with each other
networks:
mqtt-network:
name: "mqtt-network"
driver: bridge
services:
mosquitto_mqtt_broker: # container for the mqtt broker
container_name: mqtt_broker
image: eclipse-mosquitto:2
volumes:
- type: bind
source: ./mosquitto_mqtt_broker/config/
target: /mosquitto/config/
- type: bind
source: ./mosquitto_mqtt_broker/log/
target: /mosquitto/log/
- type: volume
source: data
target: /mosquitto/data/
expose:
- 1883
restart: unless-stopped
networks: # connect the container to the created network
mqtt-network:
ports:
- target: 1883
published: 1883
protocol: tcp
mode: bridge
- target: 9001
published: 9001
protocol: tcp
mode: bridge
led_controller_ui: # container for the web interface
container_name: led_controller_ui
build:
context: .
#image: zauberzeug/nicegui:latest
#restart: always
networks: # connect the container to the created network
mqtt-network:
ports:
- target: 80
published: 80
protocol: tcp
mode: bridge
expose:
- 80
environment:
- PUID=1000
- PGID=1000
volumes:
- ./mqtt_led_controller_ui:/app # mounting local app directory
depends_on: # make sure the mqtt broker is running before starting the web interface
- mosquitto_mqtt_broker
# valumes for the mosquitto container to store data
# the mqtt broker is using a volume to store data
# the mqtt broker is using a bind mount to store the configuration and log files
volumes:
data:
name: "mqtt-broker-data"