15 lines
386 B
YAML
15 lines
386 B
YAML
version: "3.7"
|
|
|
|
services:
|
|
app_proxy:
|
|
environment:
|
|
APP_HOST: wingfit_app_1
|
|
APP_PORT: 8000
|
|
|
|
app:
|
|
image: ghcr.io/itskovacs/wingfit:5.3.1@sha256:fed5dcc1c8abdec6409f4272caa08f9a6f1d2a3c8e1f9a13b3459c2ffea8a360
|
|
restart: on-failure
|
|
volumes:
|
|
- ${APP_DATA_DIR}/data:/app/storage
|
|
command: ["fastapi", "run", "/app/wingfit/main.py", "--host", "0.0.0.0"]
|