-
Notifications
You must be signed in to change notification settings - Fork 7
/
docker-compose-build.yml
175 lines (166 loc) · 4.99 KB
/
docker-compose-build.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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
version: '2'
services:
elasticsearch:
image: elasticsearch:2
restart: always
ports:
- "9200:9200"
- "9300:9300"
volumes:
- ./data/index:/usr/share/elasticsearch/data
- /etc/localtime:/etc/localtime:ro
postgres:
image: postgres:9.6
restart: always
environment:
- POSTGRES_USER=postgres_user
- POSTGRES_PASSWORD=postgres_pass
volumes:
- ./pg_data_build:/var/lib/postgresql/data
- /etc/localtime:/etc/localtime:ro
pgbouncer:
image: gavinmroy/alpine-pgbouncer:latest
restart: always
user: pgbouncer
volumes:
- ./config/pgbouncer:/etc/pgbouncer:ro
- /etc/localtime:/etc/localtime:ro
links:
- postgres
depends_on:
- postgres
ports:
- 6432:6432
django:
build:
context: .
args:
- OPACSSM_BUILD_DATE=${OPACSSM_BUILD_DATE} # export OPACSSM_BUILD_DATE=`date -u +"%Y-%m-%dT%H:%M:%SZ"`
- OPACSSM_VCS_REF=${OPACSSM_VCS_REF} # export OPACSSM_VCS_REF=`git rev-parse --short HEAD`
- OPACSSM_WEBAPP_VERSION=${OPACSSM_WEBAPP_VERSION} # export OPACSSM_WEBAPP_VERSION="v0.1.0-dev"
user: django
restart: always
depends_on:
- pgbouncer
- redis
- elasticsearch
command: /gunicorn.sh
ports:
- "8000:8000"
environment:
- POSTGRES_USER=postgres_user
- POSTGRES_PASSWORD=postgres_pass
- POSTGRES_HOST=postgres
- POSTGRES_PORT=5432
- PGBOUNCER_HOST=pgbouncer
- PGBOUNCER_PORT=6432
- DJANGO_SETTINGS_MODULE=config.settings.production
- DJANGO_SECRET_KEY=sdal#^4pih^ekewqtq8k_m9lin#136olq-_p086wsu-)=8=ns!
- DJANGO_ALLOWED_HOSTS=*
- DJANGO_SECURE_SSL_REDIRECT=False
- DJANGO_ACCOUNT_ALLOW_REGISTRATION=True
- USE_DOCKER=yes
- HAYSTACK_CONNECTIONS_HOST=elasticsearch
- HAYSTACK_CONNECTIONS_PORT=9200
- HAYSTACK_CONNECTIONS_INDEX=opac_ssm_idx
- ENABLE_INDEXING_ON_CREATE=True
volumes:
- ./data/media:/app/opac_ssm/media
- /etc/localtime:/etc/localtime:ro
redis:
image: scieloorg/redis
user: redis
restart: always
volumes:
- /etc/localtime:/etc/localtime:ro
celeryworker:
build: .
user: django
restart: always
depends_on:
- postgres
- redis
- elasticsearch
command: celery -A opac_ssm.taskapp worker -l INFO
environment:
- POSTGRES_USER=postgres_user
- POSTGRES_PASSWORD=postgres_pass
- POSTGRES_HOST=postgres
- POSTGRES_PORT=5432
- PGBOUNCER_HOST=pgbouncer
- PGBOUNCER_PORT=6432
- DJANGO_SETTINGS_MODULE=config.settings.production
- DJANGO_SECRET_KEY=sdal#^4pih^ekewqtq8k_m9lin#136olq-_p086wsu-)=8=ns!
- DJANGO_ALLOWED_HOSTS=*
- DJANGO_SECURE_SSL_REDIRECT=False
- DJANGO_ACCOUNT_ALLOW_REGISTRATION=False
- USE_DOCKER=yes
- HAYSTACK_CONNECTIONS_HOST=elasticsearch
- HAYSTACK_CONNECTIONS_PORT=9200
- HAYSTACK_CONNECTIONS_INDEX=opac_ssm_idx
- ENABLE_INDEXING_ON_CREATE=True
volumes:
- ./data/media:/app/opac_ssm/media
- /etc/localtime:/etc/localtime:ro
celerybeat:
build: .
user: django
restart: always
depends_on:
- pgbouncer
- redis
command: celery -A opac_ssm.taskapp beat -l INFO
environment:
- POSTGRES_USER=postgres_user
- POSTGRES_PASSWORD=postgres_pass
- POSTGRES_HOST=postgres
- POSTGRES_PORT=5432
- PGBOUNCER_HOST=pgbouncer
- PGBOUNCER_PORT=6432
- DJANGO_SETTINGS_MODULE=config.settings.production
- DJANGO_SECRET_KEY=sdal#^4pih^ekewqtq8k_m9lin#136olq-_p086wsu-)=8=ns!
- DJANGO_ALLOWED_HOSTS=*
- DJANGO_SECURE_SSL_REDIRECT=False
- DJANGO_ACCOUNT_ALLOW_REGISTRATION=False
- USE_DOCKER=yes
- HAYSTACK_CONNECTIONS_HOST=elasticsearch
- HAYSTACK_CONNECTIONS_PORT=9200
- HAYSTACK_CONNECTIONS_INDEX=opac_ssm_idx
- ENABLE_INDEXING_ON_CREATE=True
volumes:
- ./data/media:/app/opac_ssm/media
- /etc/localtime:/etc/localtime:ro
grpc:
build:
context: .
dockerfile: ./Dockerfile-dev
user: django
restart: always
depends_on:
- pgbouncer
- redis
- elasticsearch
command: /start-grpc.sh
environment:
- POSTGRES_USER=postgres_user
- POSTGRES_PASSWORD=postgres_pass
- POSTGRES_HOST=postgres
- POSTGRES_PORT=5432
- PGBOUNCER_HOST=pgbouncer
- PGBOUNCER_PORT=6432
- DJANGO_SETTINGS_MODULE=config.settings.local
- DJANGO_SECRET_KEY=sdal#^4pih^ekewqtq8k_m9lin#136olq-_p086wsu-)=8=ns!
- DJANGO_ALLOWED_HOSTS=*
- DJANGO_SECURE_SSL_REDIRECT=False
- DJANGO_ACCOUNT_ALLOW_REGISTRATION=False
- USE_DOCKER=yes
- HAYSTACK_CONNECTIONS_HOST=elasticsearch
- HAYSTACK_CONNECTIONS_PORT=9200
- HAYSTACK_CONNECTIONS_INDEX=opac_ssm_idx
- ENABLE_INDEXING_ON_CREATE=True
volumes:
- .:/app
- ./data/media:/app/opac_ssm/media
- /etc/localtime:/etc/localtime:ro
ports:
- "5000:5000"