forked from zentralopensource/zentral
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.mdm.yml
40 lines (38 loc) · 1005 Bytes
/
docker-compose.mdm.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
version: '2'
services:
scepserver:
build: ./conf/common/docker/scepserver/
entrypoint: /usr/local/bin/docker-entrypoint.py
command: runserver
environment:
SCEP_CA_PASS: "CHANGE THIS, DO NOT USE IN PRODUCTION"
SCEP_CERT_RENEW: 0 # Renewal always accepted
ZENTRAL_API_SECRET: "eyJtb2R1bGUiOiJ6ZW50cmFsIn0:1eCDAx:ZPeW0awGnI-1iXZ2bzHC2IPMXnM"
ZENTRAL_API_BASE_URL: "http://web:8000"
volumes:
- scep_ca:/var/lib/scep/CA
nginx:
depends_on:
- promsrv
- scepserver
- web
volumes:
- ./conf/mdm/docker/nginx/conf.d/:/etc/nginx/conf.d/
- scep_ca:/scep_CA
web:
environment:
ZENTRAL_CONF_DIR: /zentral/conf/mdm/zentral/
volumes:
- scep_ca:/scep_CA
workers:
environment:
ZENTRAL_CONF_DIR: /zentral/conf/mdm/zentral/
volumes:
- scep_ca:/scep_CA
celery:
environment:
ZENTRAL_CONF_DIR: /zentral/conf/mdm/zentral/
volumes:
- scep_ca:/scep_CA
volumes:
scep_ca: