-
Notifications
You must be signed in to change notification settings - Fork 6
/
production.yml
61 lines (56 loc) · 1.5 KB
/
production.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
58
59
60
61
version: "3"
volumes:
production_postgres_data: {}
production_postgres_data_backups: {}
production_traefik: {}
services:
django:
build:
context: .
dockerfile: ./compose/production/django/Dockerfile
image: ds_judgements_public_ui_production_django
depends_on:
- postgres
env_file:
- ./.envs/.production/.django
- ./.envs/.production/.postgres
environment:
MARKLOGIC_HOST: marklogic
command: /start
postgres:
build:
context: .
dockerfile: ./compose/production/postgres/Dockerfile
image: ds_judgements_public_ui_production_postgres
volumes:
- production_postgres_data:/var/lib/postgresql/data:Z
- production_postgres_data_backups:/backups:z
env_file:
- ./.envs/.production/.postgres
marklogic:
container_name: marklogic
image: store/marklogicdb/marklogic-server:10.0-8.1-centos-1.0.0-ea2
ports:
- "8000:8000"
- "8001:8001"
- "8002:8002"
- "8011:8011"
environment:
MARKLOGIC_ADMIN_USERNAME: admin
MARKLOGIC_ADMIN_PASSWORD: admin
MARKLOGIC_INIT: "true"
volumes:
- ./docker/db/data/:/var/opt/MarkLogic/
- ./docker/db/backup:/var/opt/backup
traefik:
build:
context: .
dockerfile: ./compose/production/traefik/Dockerfile
image: ds_judgements_public_ui_production_traefik
depends_on:
- django
volumes:
- production_traefik:/etc/traefik/acme:z
ports:
- "0.0.0.0:80:80"
- "0.0.0.0:443:443"