-
-
Notifications
You must be signed in to change notification settings - Fork 706
Expand file tree
/
Copy pathdocker-compose.balena.dev.yml.tmpl
More file actions
82 lines (77 loc) · 1.99 KB
/
docker-compose.balena.dev.yml.tmpl
File metadata and controls
82 lines (77 loc) · 1.99 KB
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
# vim: ft=yaml
version: "2"
services:
anthias-server:
image: ghcr.io/screenly/anthias-server:${GIT_SHORT_HASH}-${BOARD}
build:
context: .
dockerfile: ./docker/Dockerfile.server
ports:
- 80:8080
environment:
- HOME=/data
- LISTEN=0.0.0.0
- CELERY_BROKER_URL=redis://redis:6379/0
- CELERY_RESULT_BACKEND=redis://redis:6379/0
depends_on:
- redis
devices:
- "/dev/vchiq:/dev/vchiq"
restart: always
volumes:
- resin-data:/data
labels:
io.balena.features.supervisor-api: '1'
anthias-viewer:
image: ghcr.io/screenly/anthias-viewer:${GIT_SHORT_HASH}-${BOARD}
build:
context: .
dockerfile: ./docker/Dockerfile.viewer
depends_on:
- anthias-server
environment:
- HOME=/data
- PORT=8080
- NOREFRESH=1
- LISTEN=anthias-server
privileged: true
restart: always
shm_size: ${SHM_SIZE}
volumes:
- resin-data:/data
labels:
io.balena.features.supervisor-api: '1'
anthias-celery:
# Runs on the same image as anthias-server with a CMD override.
# See docker-compose.yml.tmpl for context on the merge.
image: ghcr.io/screenly/anthias-server:${GIT_SHORT_HASH}-${BOARD}
command: >
celery -A celery_tasks.celery worker -B -n worker@anthias
--loglevel=info --schedule /tmp/celerybeat-schedule
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: ghcr.io/screenly/anthias-redis:${GIT_SHORT_HASH}-${BOARD}
build:
context: .
dockerfile: ./docker/Dockerfile.redis
ports:
- 127.0.0.1:6379:6379
restart: always
volumes:
- redis-data:/var/lib/redis
volumes:
resin-data:
redis-data: