forked from internetarchive/openlibrary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.production.yml
154 lines (147 loc) · 3.94 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
##
## 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:
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
covers:
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:
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
infobase:
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:
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:
restart: always
hostname: "$HOSTNAME"
environment:
- AFFILIATE_CONFIG=/openlibrary.yml
image: oldev:latest
build:
context: .
dockerfile: docker/Dockerfile.oldev
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:
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
importbot:
image: oldev:latest
build:
context: .
dockerfile: docker/Dockerfile.oldev
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:
- ol-vendor:/openlibrary/vendor
- .:/openlibrary
- ../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: