16 lines
408 B
YAML
16 lines
408 B
YAML
version: "3.7"
|
|
|
|
services:
|
|
app_proxy:
|
|
environment:
|
|
APP_HOST: trip_app_1
|
|
APP_PORT: 8000
|
|
|
|
app:
|
|
image: ghcr.io/itskovacs/trip:1.43.2@sha256:9e63c48d8c11b681d67e1a4178ca9b1818a2aba53e8541df30fcd8bdb40c3ad5
|
|
restart: on-failure
|
|
stop_grace_period: 1m
|
|
volumes:
|
|
- ${APP_DATA_DIR}/data/app:/app/storage
|
|
command: ["fastapi", "run", "/app/trip/main.py", "--host", "0.0.0.0"]
|