Skeleton Code commit

This commit is contained in:
2025-02-12 17:46:01 +09:00
parent 63bd561f6d
commit ad26488b1b
7 changed files with 246 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
version: "3.9"
services:
api:
build: .
command: uvicorn app:app --host 0.0.0.0 --port 8000
ports:
- "8000:8000"
depends_on:
- redis
worker:
build: .
command: python worker.py
depends_on:
- redis
redis:
image: redis:6
ports:
- "6379:6379"