-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
56 lines (51 loc) · 1.16 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
version: '2'
services:
# workflow:
# image: raptorbox/workflow:latest
# networks:
# - redzilla
# - raptor
# volumes:
# - ./data:/app/data
# - ./config:/app/config
# ports:
# - 7475:7475
# # environment:
# # NODERED_CONFIG: /data/config/workflow.json
redzilla:
image: opny/redzilla:latest
networks:
- redzilla
- raptor
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- ./data:/app/data
- ./config:/app/config
environment:
REDZILLA_IMAGENAME: raptorbox/node-red
REDZILLA_NETWORK: raptorworkflowmanager_redzilla
REDZILLA_DOMAIN: workflow.localhost
REDZILLA_ENV: NODERED
NODERED_CONFIG: /data/config/workflow.json
caddy:
restart: unless-stopped
image: abiosoft/caddy
environment:
- CADDYPATH=/etc/certs
volumes:
- ./data/certs:/etc/certs
- ./config/Caddyfile:/etc/Caddyfile
ports:
- 8080:8080
logging:
driver: json-file
options:
max-size: 10m
networks:
- raptor
networks:
redzilla:
driver: bridge
raptor:
external:
name: raptor_raptor_net