-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdc-stream.yml
57 lines (51 loc) · 1.27 KB
/
dc-stream.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
57
version: '2'
services:
cre-glue:
image: tamboraorg/creglue:2020.0
container_name: creglue
volumes:
- /var/run/docker.sock:/tmp/docker.sock:ro
- ./secrets:/cre/secrets
cre-proxy:
image: tamboraorg/creproxy:2020.0
container_name: creproxy
environment:
ADMIN_EMAIL: [email protected]
CRE_DOMAIN: localhost
CRE_DEVELOPMENT: 1
ports:
- "80:80"
- "443:443"
volumes:
- "./volumes/certs:/etc/letsencrypt"
volumes_from:
- cre-glue
cre-rabbit:
image: tamboraorg/crerabbitmq:latest
container_name: crerabbit
environment:
CRE_SUBDOMAIN: mq
CRE_PORT: 15672
RABBITMQ_ROOT_PWD: secret
# CRE_PHP_ROOT: www/yii/public
volumes_from:
- cre-glue
ports:
- "15672:15672"
- "5672:5672"
cre-image:
image: tamboraorg/creimage:latest
container_name: creimage
environment:
RABBITMQ_QUEUE: test
RABBITMQ_USER: testuser
RABBITMQ_PWD: secret
TESSERACT_LANGUAGES: deu,script-frak
# ?? queue ??
# volumes:
# - ./volumes/postgres/dumps/tambora:/cre/postgres/dumps/tambora
volumes_from:
- cre-glue
# - cre-rabbit # for file-share ??
# sudo docker system prune -f
# sudo docker-compose --file dc-stream.yml up -d