8 lines
304 B
YAML
8 lines
304 B
YAML
services:
|
|
app:
|
|
build: .
|
|
ports:
|
|
- 8080:8000
|
|
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"] |