mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-10-31 22:19:00 +00:00
117 lines
2.7 KiB
YAML
117 lines
2.7 KiB
YAML
services:
|
|
nginx:
|
|
image: nginx:1.25.2
|
|
restart: unless-stopped
|
|
ports:
|
|
- "1333:80"
|
|
depends_on:
|
|
- web
|
|
networks:
|
|
- main
|
|
volumes:
|
|
- ./nginx:/etc/nginx/conf.d
|
|
- static_volume:/app/static
|
|
- media_volume:/app/images
|
|
db:
|
|
image: postgres:13
|
|
env_file: .env
|
|
volumes:
|
|
- pgdata:/var/lib/postgresql/data
|
|
networks:
|
|
- main
|
|
web:
|
|
build: .
|
|
env_file: .env
|
|
command: python manage.py runserver 0.0.0.0:8000
|
|
volumes:
|
|
- .:/app
|
|
- static_volume:/app/static
|
|
- media_volume:/app/images
|
|
- exports_volume:/app/exports
|
|
depends_on:
|
|
- db
|
|
- celery_worker
|
|
- redis_activity
|
|
networks:
|
|
- main
|
|
ports:
|
|
- "8000"
|
|
redis_activity:
|
|
image: redis:7.2.1
|
|
command: redis-server --requirepass ${REDIS_ACTIVITY_PASSWORD} --appendonly yes --port ${REDIS_ACTIVITY_PORT}
|
|
volumes:
|
|
- ./redis.conf:/etc/redis/redis.conf
|
|
- redis_activity_data:/data
|
|
env_file: .env
|
|
networks:
|
|
- main
|
|
restart: on-failure
|
|
redis_broker:
|
|
image: redis:7.2.1
|
|
command: redis-server --requirepass ${REDIS_BROKER_PASSWORD} --appendonly yes --port ${REDIS_BROKER_PORT}
|
|
volumes:
|
|
- ./redis.conf:/etc/redis/redis.conf
|
|
- redis_broker_data:/data
|
|
env_file: .env
|
|
networks:
|
|
- main
|
|
restart: on-failure
|
|
celery_worker:
|
|
env_file: .env
|
|
build: .
|
|
networks:
|
|
- main
|
|
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
|
|
volumes:
|
|
- .:/app
|
|
- static_volume:/app/static
|
|
- media_volume:/app/images
|
|
- exports_volume:/app/exports
|
|
depends_on:
|
|
- db
|
|
- redis_broker
|
|
restart: on-failure
|
|
celery_beat:
|
|
env_file: .env
|
|
build: .
|
|
networks:
|
|
- main
|
|
command: celery -A celerywyrm beat -l INFO --scheduler django_celery_beat.schedulers:DatabaseScheduler
|
|
volumes:
|
|
- .:/app
|
|
- static_volume:/app/static
|
|
- media_volume:/app/images
|
|
- exports_volume:/app/exports
|
|
depends_on:
|
|
- celery_worker
|
|
restart: on-failure
|
|
flower:
|
|
build: .
|
|
command: celery -A celerywyrm flower --basic_auth=${FLOWER_USER}:${FLOWER_PASSWORD} --url_prefix=flower
|
|
env_file: .env
|
|
volumes:
|
|
- .:/app
|
|
- static_volume:/app/static
|
|
networks:
|
|
- main
|
|
depends_on:
|
|
- db
|
|
- redis_broker
|
|
restart: on-failure
|
|
dev-tools:
|
|
build: dev-tools
|
|
env_file: .env
|
|
volumes:
|
|
- /app/dev-tools/
|
|
- .:/app
|
|
profiles:
|
|
- tools
|
|
volumes:
|
|
pgdata:
|
|
static_volume:
|
|
media_volume:
|
|
exports_volume:
|
|
redis_broker_data:
|
|
redis_activity_data:
|
|
networks:
|
|
main:
|