-
-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathproduction_deploy_with_gremlin.yml
135 lines (122 loc) · 3.41 KB
/
production_deploy_with_gremlin.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
version: '3'
volumes:
production_postgres_data: {}
production_postgres_data_backups: {}
production_traefik: {}
production_gremlin_postgres_data: {}
production_gremlin_postgres_data_backups: {}
services:
django: &django
build:
context: .
dockerfile: ./compose/production/django/Dockerfile
image: opencontractserver_production_django
depends_on:
- postgres
- redis
env_file:
- ./.envs/.production/.django
- ./.envs/.production/.postgres
command: /start
postgres:
build:
context: .
dockerfile: ./compose/production/postgres/Dockerfile
image: opencontractserver_production_postgres
volumes:
- production_postgres_data:/var/lib/postgresql/data:Z
- production_postgres_data_backups:/backups:z
env_file:
- ./.envs/.production/.postgres
gremlinpostgres:
build:
context: .
dockerfile: ./compose/production/postgres/Dockerfile
image: opencontractserver_production_gremlin_postgres
container_name: gremlinpostgres
environment:
- POSTGRES_DB=gremlin_engine_db
expose:
- "5433"
volumes:
- production_gremlin_postgres_data:/var/lib/postgresql/data:Z
- production_gremlin_postgres_data_backups:/backups:z
command: -p 5433
env_file:
- ./.envs/.production/.gremlinengine.postgres
gremlinengine: &gremlinengine
image: opensourcelegal/gremlin-engine:latest
container_name: gremlinengine
environment:
- POSTGRES_DB=gremlin_engine_db
- POSTGRES_HOST=gremlinpostgres
- POSTGRES_PORT=5433
- DJANGO_SETTINGS_MODULE=config.settings.production
- USE_AWS=false
- DJANGO_SECURE_SSL_REDIRECT=False
- HTTP_X_FORWARDED_PROTO=http
depends_on:
- gremlinredis
- gremlinpostgres
env_file:
- ./.envs/.production/.django
- ./.envs/.production/.gremlinengine.postgres
- ./.envs/.production/.gremlinengine
command: /start
gremlinworker:
<<: *gremlinengine
image: opensourcelegal/gremlin-worker:latest
container_name: gremlinworker
environment:
- POSTGRES_DB=gremlin_engine_db
- POSTGRES_HOST=gremlinpostgres
- POSTGRES_PORT=5433
- DJANGO_SETTINGS_MODULE=config.settings.production
- USE_AWS=false
- DJANGO_SECURE_SSL_REDIRECT=False
- HTTP_X_FORWARDED_PROTO=http
depends_on:
- gremlinredis
- gremlinpostgres
ports: []
command: /start-celeryworker
frontend:
build:
context: ./frontend
dockerfile: ./Dockerfile
image: opencontractserver_production_frontend
container_name: frontend
depends_on:
- django
env_file:
- ./.envs/.production/.frontend
traefik:
build:
context: .
dockerfile: ./compose/production/traefik/Dockerfile
image: opencontractserver_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"
- "0.0.0.0:5555:5555"
gremlinredis:
image: redis:6
container_name: gremlinredis
redis:
image: redis:6
celeryworker:
<<: *django
image: opencontractserver_production_celeryworker
command: /start-celeryworker
celerybeat:
<<: *django
image: opencontractserver_production_celerybeat
command: /start-celerybeat
flower:
<<: *django
image: opencontractserver_production_flower
command: /start-flower