mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-10-31 22:19:00 +00:00
79 lines
1.7 KiB
YAML
79 lines
1.7 KiB
YAML
version: '3'
|
|
|
|
services:
|
|
nginx:
|
|
image: nginx:latest
|
|
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
|
|
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
|
|
depends_on:
|
|
- db
|
|
- celery_worker
|
|
networks:
|
|
- main
|
|
ports:
|
|
- 8000:8000
|
|
redis:
|
|
image: redis
|
|
env_file: .env
|
|
ports:
|
|
- 6379:6379
|
|
networks:
|
|
- main
|
|
restart: on-failure
|
|
celery_worker:
|
|
env_file: .env
|
|
build: .
|
|
networks:
|
|
- main
|
|
command: celery -A celerywyrm worker -l info
|
|
volumes:
|
|
- .:/app
|
|
- static_volume:/app/static
|
|
- media_volume:/app/images
|
|
depends_on:
|
|
- db
|
|
- redis
|
|
restart: on-failure
|
|
flower:
|
|
build: .
|
|
command: flower --port=8888
|
|
env_file: .env
|
|
environment:
|
|
- CELERY_BROKER_URL=${CELERY_BROKER}
|
|
networks:
|
|
- main
|
|
depends_on:
|
|
- db
|
|
- redis
|
|
restart: on-failure
|
|
ports:
|
|
- 8888:8888
|
|
volumes:
|
|
pgdata:
|
|
static_volume:
|
|
media_volume:
|
|
networks:
|
|
main:
|