forked from internetarchive/openlibrary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.production.yml
208 lines (193 loc) · 5.45 KB
/
docker-compose.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
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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
##
## Production server config (wip)
## You probably want to run:
## export COMPOSE_FILE="docker-compose.yml:docker-compose.production.yml"
## docker-compose up -d
##
version: "3.1"
services:
web:
profiles: ["ol-web1", "ol-web2"]
image: "${OLIMAGE:-openlibrary/olbase:latest}"
restart: always
hostname: "$HOSTNAME"
environment:
- GUNICORN_OPTS= --workers 50 --timeout 300 --max-requests 500
- OL_CONFIG=/olsystem/etc/openlibrary.yml
- BEFORE_START=pip install -e /booklending_utils
volumes:
- ../booklending_utils:/booklending_utils
- ../olsystem:/olsystem
- ../olsystem/etc/ia.ini:/home/openlibrary/.config/ia.ini
solr:
# TODO: Currently solr is deployed in a "special" way
profiles: []
covers:
profiles: ["ol-covers0"]
image: "${OLIMAGE:-openlibrary/olbase:latest}"
restart: always
hostname: "$HOSTNAME"
environment:
- GUNICORN_OPTS= --workers 30 --max-requests 500
- COVERSTORE_CONFIG=/olsystem/etc/coverstore.yml
volumes:
- ../olsystem:/olsystem
- /1:/1
covers_nginx:
profiles: ["ol-covers0"]
image: nginx:1.19.4
restart: always
depends_on:
- covers
volumes:
- ./docker/nginx.conf:/etc/nginx/nginx.conf:ro
- ./docker/covers_nginx.conf:/etc/nginx/sites-enabled/covers_nginx.conf:ro
# Needed for HTTPS, since this is a public server
- ../olsystem/etc/nginx/sites-available/default-docker.conf:/etc/nginx/sites-enabled/default:ro
# Needs access to openlibrary for static files
- ../olsystem:/olsystem
- /1/var/lib/openlibrary/sitemaps/sitemaps:/sitemaps
ports:
- 80:80
- 443:443
networks:
- webnet
logging:
options:
max-size: "512m"
max-file: "4"
secrets:
- petabox_seed
# Needed by default-docker.conf
- ssl_certificate
- ssl_certificate_key
memcached:
profiles: ["ol-covers0"]
cron-jobs:
profiles: ["ol-home0"]
image: "${OLIMAGE:-openlibrary/olbase:latest}"
hostname: "$HOSTNAME"
user: root
command: docker/ol-cron-start.sh
restart: always
volumes:
- ../olsystem/etc/cron.d/openlibrary.ol_home0:/etc/cron.d/openlibrary.ol_home0:ro
- ../olsystem:/olsystem
- /1/var/tmp:/1/var/tmp
networks:
- webnet
- dbnet
secrets:
- ia_db_pw_file
infobase:
profiles: ["ol-home0"]
image: "${OLIMAGE:-openlibrary/olbase:latest}"
restart: always
hostname: "$HOSTNAME"
environment:
- INFOBASE_OPTS= fastcgi
- INFOBASE_CONFIG=/olsystem/etc/infobase.yml
volumes:
- ../olsystem:/olsystem
- infobase-writelog:/1/var/lib/openlibrary/infobase/log
- infobase-errorlog:/1/var/log/openlibrary/infobase-errors
infobase_nginx:
profiles: ["ol-home0"]
image: nginx:1.19.4
restart: always
depends_on:
- infobase
volumes:
- ./docker/nginx.conf:/etc/nginx/nginx.conf:ro
- ./docker/infobase_nginx.conf:/etc/nginx/sites-enabled/infobase_nginx.conf:ro
# Needs olsystem for black-listed IPs
- ../olsystem:/olsystem
ports:
- 7000:7000
networks:
- webnet
secrets:
- petabox_seed
affiliate-server:
profiles: ["ol-home0"]
image: "${OLIMAGE:-openlibrary/olbase:latest}"
restart: always
hostname: "$HOSTNAME"
environment:
- AFFILIATE_CONFIG=/openlibrary.yml
command: docker/ol-affiliate-server-start.sh
ports:
- 31337:31337
volumes:
- /opt/olsystem/etc/openlibrary.yml:/openlibrary.yml
networks:
- webnet
logging:
options:
max-size: "512m"
max-file: "4"
solr-updater:
profiles: ["ol-home0"]
image: "${OLIMAGE:-openlibrary/olbase:latest}"
restart: always
hostname: "$HOSTNAME"
environment:
- OL_CONFIG=/olsystem/etc/openlibrary.yml
- OL_URL=https://openlibrary.org/
volumes:
- ../olsystem:/olsystem
logging:
options:
max-size: "512m"
max-file: "4"
secrets:
- ia_db_pw_file
# This will replace solr-updater once we fully migrate to solr8
solr8-updater:
profiles: ["ol-home0"]
image: "${OLIMAGE:-openlibrary/olbase:latest}"
restart: always
hostname: "$HOSTNAME"
environment:
- PYENV_VERSION=${PYENV_VERSION:-}
- OL_CONFIG=/olsystem/etc/openlibrary.yml
- OL_URL=https://openlibrary.org/
- STATE_FILE=solr8-update.offset
- EXTRA_OPTS=--solr-url http://ol-solr1:8984/solr/openlibrary --initial-state '2021-04-12:0'
volumes:
- solr-updater-data:/solr-updater-data
- ../olsystem:/olsystem
secrets:
- ia_db_pw_file
command: docker/ol-solr-updater-start.sh
networks:
- webnet
- dbnet
importbot:
profiles: ["ol-home0"]
image: "${OLIMAGE:-openlibrary/olbase:latest}"
command: docker/ol-importbot-start.sh
restart: always
hostname: "$HOSTNAME"
environment:
- OL_CONFIG=/olsystem/etc/openlibrary.yml
- OPENLIBRARY_RCFILE=/olsystem/etc/olrc-importbot
- PYENV_VERSION=${PYENV_VERSION:-}
volumes:
- ../olsystem:/olsystem
networks:
- webnet
- dbnet
secrets:
petabox_seed:
file: /opt/.petabox/seed
ia_db_pw_file:
file: /opt/.petabox/dbserver
# SSL-related secrets
ssl_certificate:
file: /opt/.petabox/openlibrary.org.combined.crt
ssl_certificate_key:
file: /opt/.petabox/openlibrary.org.nopassword.key
volumes:
infobase-writelog:
infobase-errorlog: