tripweb/docker-compose.yml
2025-07-23 17:29:02 +02:00

10 lines
426 B
YAML

services:
app:
#build: .
image: ghcr.io/itskovacs/trip:1
user: "1000:1000"
ports:
- 127.0.0.1:8080:8000 #127.0.0.1: locally exposed, on port 8080 by default
volumes:
- ./storage:/app/storage #If you were previously using a named volume, follow https://github.com/itskovacs/trip/releases/tag/1.5.0 to migrate your data.
command: ["fastapi", "run", "/app/trip/main.py", "--host", "0.0.0.0"]