2020-03-22 11:21:19 -07:00
version : '3'
2023-04-03 21:21:11 -04:00
x-logging :
&default-logging
driver : "json-file"
options :
max-size : "150m"
max-file : "2"
2020-03-22 11:21:19 -07:00
services :
2021-03-04 19:44:12 +01:00
nginx :
2023-09-07 19:30:29 -06:00
image : nginx:1.25.2
2023-04-03 21:21:11 -04:00
logging : *default-logging
2022-05-09 11:00:28 +02:00
restart : unless-stopped
2021-03-04 19:44:12 +01:00
ports :
2022-11-23 22:11:59 -08:00
- "80:80"
- "443:443"
2021-03-04 19:44:12 +01:00
depends_on :
- web
networks :
- main
volumes :
- ./nginx:/etc/nginx/conf.d
2021-03-20 20:47:53 -07:00
- ./certbot/conf:/etc/nginx/ssl
- ./certbot/data:/var/www/certbot
2021-03-04 19:44:12 +01:00
- static_volume:/app/static
- media_volume:/app/images
2021-03-20 20:47:53 -07:00
certbot :
image : certbot/certbot:latest
2021-06-05 10:46:41 -07:00
command : certonly --webroot --webroot-path=/var/www/certbot --email ${EMAIL} --agree-tos --no-eff-email -d ${DOMAIN} -d www.${DOMAIN}
#command: renew --webroot --webroot-path /var/www/certbot
2023-04-03 21:21:11 -04:00
logging : *default-logging
2021-03-20 20:47:53 -07:00
volumes :
- ./certbot/conf:/etc/letsencrypt
- ./certbot/logs:/var/log/letsencrypt
- ./certbot/data:/var/www/certbot
2021-03-04 19:44:12 +01:00
db :
2021-03-20 20:47:53 -07:00
build : postgres-docker
2021-03-04 19:44:12 +01:00
env_file : .env
2021-03-20 20:47:53 -07:00
entrypoint : /bookwyrm-entrypoint.sh
command : cron postgres
2021-03-04 19:44:12 +01:00
volumes :
- pgdata:/var/lib/postgresql/data
2021-03-20 20:47:53 -07:00
- backups:/backups
2021-03-04 19:44:12 +01:00
networks :
- main
web :
build : .
env_file : .env
2023-08-20 10:26:44 +10:00
command : gunicorn bookwyrm.wsgi:application --threads=8 --bind 0.0.0.0:8000
2023-04-03 21:21:11 -04:00
logging : *default-logging
2021-03-04 19:44:12 +01:00
volumes :
- .:/app
- static_volume:/app/static
- media_volume:/app/images
2024-03-24 11:51:37 +01:00
- exports_volume:/app/exports
2021-03-04 19:44:12 +01:00
depends_on :
- db
- celery_worker
2021-03-25 11:00:37 -07:00
- redis_activity
2021-03-04 19:44:12 +01:00
networks :
- main
ports :
2022-11-16 12:38:49 +01:00
- "8000"
2021-03-25 11:00:37 -07:00
redis_activity :
2023-09-07 19:30:29 -06:00
image : redis:7.2.1
2021-05-18 00:54:15 -05:00
command : redis-server --requirepass ${REDIS_ACTIVITY_PASSWORD} --appendonly yes --port ${REDIS_ACTIVITY_PORT}
2023-04-03 21:21:11 -04:00
logging : *default-logging
2021-03-25 11:00:37 -07:00
volumes :
- ./redis.conf:/etc/redis/redis.conf
2021-05-17 00:05:11 -05:00
- redis_activity_data:/data
2021-03-25 11:00:37 -07:00
env_file : .env
networks :
- main
restart : on -failure
redis_broker :
2023-09-07 19:30:29 -06:00
image : redis:7.2.1
2021-05-18 00:54:15 -05:00
command : redis-server --requirepass ${REDIS_BROKER_PASSWORD} --appendonly yes --port ${REDIS_BROKER_PORT}
2023-04-03 21:21:11 -04:00
logging : *default-logging
2021-03-20 20:47:53 -07:00
volumes :
- ./redis.conf:/etc/redis/redis.conf
2021-05-17 00:05:11 -05:00
- redis_broker_data:/data
2021-03-04 19:44:12 +01:00
env_file : .env
networks :
- main
restart : on -failure
celery_worker :
env_file : .env
build : .
networks :
- main
2023-07-20 00:16:38 -04:00
command : celery -A celerywyrm worker -l info -Q high_priority,medium_priority,low_priority,streams,images,suggested_users,email,connectors,lists,inbox,imports,import_triggered,broadcast,misc
2023-04-03 21:21:11 -04:00
logging : *default-logging
2021-03-04 19:44:12 +01:00
volumes :
- .:/app
- static_volume:/app/static
- media_volume:/app/images
2024-03-24 11:51:37 +01:00
- exports_volume:/app/exports
2021-03-04 19:44:12 +01:00
depends_on :
- db
2021-03-25 11:00:37 -07:00
- redis_broker
2021-03-04 19:44:12 +01:00
restart : on -failure
2022-02-26 08:44:19 -08:00
celery_beat :
env_file : .env
build : .
networks :
- main
command : celery -A celerywyrm beat -l INFO --scheduler django_celery_beat.schedulers:DatabaseScheduler
2023-04-03 21:21:11 -04:00
logging : *default-logging
2022-02-26 08:44:19 -08:00
volumes :
- .:/app
- static_volume:/app/static
- media_volume:/app/images
2024-03-24 11:51:37 +01:00
- exports_volume:/app/exports
2022-02-26 08:44:19 -08:00
depends_on :
- celery_worker
restart : on -failure
2021-03-04 19:44:12 +01:00
flower :
build : .
2022-12-06 12:58:05 +00:00
command : celery -A celerywyrm flower --basic_auth=${FLOWER_USER}:${FLOWER_PASSWORD} --url_prefix=flower
2023-04-03 21:21:11 -04:00
logging : *default-logging
2021-03-04 19:44:12 +01:00
env_file : .env
2021-05-23 23:49:12 -05:00
volumes :
- .:/app
2024-03-18 20:22:14 +01:00
- static_volume:/app/static
2021-03-04 19:44:12 +01:00
networks :
- main
depends_on :
- db
2021-03-25 11:00:37 -07:00
- redis_broker
2021-03-04 19:44:12 +01:00
restart : on -failure
2022-02-12 14:06:18 -08:00
dev-tools :
2022-02-15 12:25:35 -08:00
build : dev-tools
2022-02-12 14:06:18 -08:00
env_file : .env
volumes :
2022-03-16 23:56:19 -07:00
- /app/dev-tools/
2022-02-16 12:53:18 -08:00
- .:/app
2024-03-18 21:02:06 +01:00
profiles :
- tools
2020-03-22 11:21:19 -07:00
volumes :
2021-03-04 19:44:12 +01:00
pgdata :
2021-03-20 20:47:53 -07:00
backups :
2021-03-04 19:44:12 +01:00
static_volume :
media_volume :
2024-03-24 11:51:37 +01:00
exports_volume :
2021-04-15 14:55:08 -07:00
redis_broker_data :
redis_activity_data :
2020-03-22 14:33:26 -07:00
networks :
2021-03-04 19:44:12 +01:00
main :