-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
42 lines (41 loc) · 1.02 KB
/
docker-compose.yml
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
version: '3'
services:
server:
image: ghcr.io/drakeapps/cloud-led-controller/server-rpi
restart: unless-stopped
build:
context: .
devices:
- /dev/snd:/dev/snd
privileged: true
env_file: .env
ports:
- 6789:6789
ssl:
image: ghcr.io/drakeapps/cloud-led-controller/server-ssl
restart: unless-stopped
build:
context: ssl/
ports:
- 443:443
volumes:
- /var/opt/ssl/:/etc/nginx/ssl/
webui:
image: ghcr.io/drakeapps/cloud-led-controller/webui
restart: unless-stopped
build:
context: web-ui/
ports:
- 80:80
mqtt-sound:
image: ghcr.io/drakeapps/cloud-led-controller/mqtt
restart: unless-stopped
build:
context: mqtt-websocket-proxy/
command: "node sound.js --mqttHost ${MQTTHOST} --wsURL ${WSURL}"
mqtt-color:
image: ghcr.io/drakeapps/cloud-led-controller/mqtt
restart: unless-stopped
build:
context: mqtt-websocket-proxy/
command: "node color.js --mqttHost ${MQTTHOST} --wsURL ${WSURL}"