docker yeah

This commit is contained in:
dm
2025-08-26 23:13:57 +03:00
parent e491b5b19d
commit c81ba29624
2 changed files with 36 additions and 0 deletions

13
docker-compose.yml Normal file
View File

@@ -0,0 +1,13 @@
services:
web:
build: .
container_name: sfs
command: uv run uvicorn app.api:app --host 0.0.0.0 --port 8000
ports:
- "8000:8000"
volumes:
- .:/app
- ./files:/app/files
env_file:
- .env
restart: unless-stopped