-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
51 lines (45 loc) · 1.61 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
# This is a configuration example. Please review for your own setup
version: '3.3'
services:
#Please read Readme before using the keepalive function
mayan-comdirect-keepalive:
container_name: mayan-comdirect-keepalive
image: drrsatzteil/mayan-comdirect-web:latest
networks:
- bridge
restart: unless-stopped
volumes:
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
environment:
WEB_URL: mayan-comdirect-web:8000
mayan-comdirect-web:
container_name: mayan-comdirect-web
image: drrsatzteil/mayan-comdirect-web:latest
networks:
- bridge
restart: unless-stopped
volumes:
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
environment:
REDIS_URL: redis://:${MAYAN_REDIS_PASSWORD:-mayanredispassword}@redis:6379/3
mayan-comdirect-worker:
container_name: mayan-comdirect-worker
image: drrsatzteil/mayan-comdirect-worker:latest
networks:
- bridge
restart: unless-stopped
volumes:
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
environment:
REDIS_URL: redis://:${MAYAN_REDIS_PASSWORD:-mayanredispassword}@redis:6379/3
REDIS_CACHE_URL: redis://:${MAYAN_REDIS_PASSWORD:-mayanredispassword}@redis:6379/4
MAYAN_USER: ${MAYAN_MAM_USER}
MAYAN_PASSWORD: ${MAYAN_MAM_PASS}
MAYAN_URL: http://app:8000/api/v4/
COMDIRECT_CLIENT_ID: ${COMDIRECT_CLIENT_ID}
COMDIRECT_CLIENT_SECRET: ${COMDIRECT_CLIENT_SECRET}
COMDIRECT_ZUGANGSNUMMER: ${COMDIRECT_ZUGANGSNUMMER}
COMDIRECT_PIN: ${COMDIRECT_PIN}