14 lines
262 B
YAML
14 lines
262 B
YAML
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
|