清空,重构

This commit is contained in:
2026-04-28 13:15:55 +08:00
parent 381079bbf3
commit 61535a53c2
170 changed files with 0 additions and 1219 deletions

View File

@@ -1,55 +0,0 @@
services:
web:
build: .
env_file: .env
command: gunicorn config.asgi:application -k uvicorn.workers.UvicornWorker -b 0.0.0.0:8000
ports:
- "8001:8000"
depends_on:
- db
- redis
networks:
- fonrey_net
db:
image: postgres:16-alpine
env_file: .env
volumes:
- postgres_data:/var/lib/postgresql/data
networks:
- fonrey_net
redis:
image: redis:7-alpine
env_file: .env
volumes:
- redis_data:/data
networks:
- fonrey_net
celery:
build: .
env_file: .env
command: celery -A config worker -l info
depends_on:
- redis
- db
networks:
- fonrey_net
celery-beat:
build: .
env_file: .env
command: celery -A config beat -l info
depends_on:
- redis
- db
networks:
- fonrey_net
networks:
fonrey_net:
volumes:
postgres_data:
redis_data: