forked from Screenly/Anthias
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.balena.yml.tmpl
104 lines (96 loc) · 2.41 KB
/
docker-compose.balena.yml.tmpl
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
# vim: ft=yaml
version: "2"
services:
anthias-wifi-connect:
image: screenly/anthias-wifi-connect:${GIT_SHORT_HASH}-${BOARD}
depends_on:
- anthias-viewer
environment:
PORTAL_LISTENING_PORT: 8000
CHECK_CONN_FREQ: 10
PORTAL_SSID: 'Anthias WiFi Connect'
DBUS_SYSTEM_BUS_ADDRESS: 'unix:path=/host/run/dbus/system_bus_socket'
network_mode: host
privileged: true
labels:
io.balena.features.dbus: "1"
io.balena.features.firmware: "1"
anthias-server:
image: screenly/anthias-server:${GIT_SHORT_HASH}-${BOARD}
environment:
- HOME=/data
- LISTEN=0.0.0.0
- CELERY_BROKER_URL=redis://redis:6379/0
- CELERY_RESULT_BACKEND=redis://redis:6379/0
devices:
- "/dev/vchiq:/dev/vchiq"
restart: always
volumes:
- resin-data:/data
labels:
io.balena.features.supervisor-api: '1'
anthias-viewer:
image: screenly/anthias-viewer:${GIT_SHORT_HASH}-${BOARD}
depends_on:
- anthias-server
environment:
- HOME=/data
- PORT=80
- NOREFRESH=1
- LISTEN=anthias-nginx
extra_hosts:
- "host.docker.internal:host-gateway"
privileged: true
restart: always
volumes:
- resin-data:/data
labels:
io.balena.features.supervisor-api: '1'
anthias-websocket:
image: screenly/anthias-websocket:${GIT_SHORT_HASH}-${BOARD}
depends_on:
- anthias-server
environment:
- HOME=/data
- LISTEN=0.0.0.0
restart: always
volumes:
- resin-data:/data
anthias-celery:
image: screenly/anthias-celery:${GIT_SHORT_HASH}-${BOARD}
depends_on:
- anthias-server
- redis
environment:
- HOME=/data
- CELERY_BROKER_URL=redis://redis:6379/0
- CELERY_RESULT_BACKEND=redis://redis:6379/0
devices:
- "/dev/vchiq:/dev/vchiq"
restart: always
volumes:
- resin-data:/data
labels:
io.balena.features.supervisor-api: '1'
redis:
image: screenly/anthias-redis:${GIT_SHORT_HASH}-${BOARD}
ports:
- 127.0.0.1:6379:6379
restart: always
volumes:
- redis-data:/var/lib/redis
anthias-nginx:
image: screenly/anthias-nginx:${GIT_SHORT_HASH}-${BOARD}
ports:
- 80:80
environment:
- HOME=/data
depends_on:
- anthias-server
- anthias-websocket
restart: always
volumes:
- resin-data:/data:ro
volumes:
resin-data:
redis-data: