kv-netflix/docker-compose.yml
vndangkhoa f8be75bd81
Some checks failed
StreamFlow CI/CD / Backend Tests (push) Waiting to run
StreamFlow CI/CD / Backend Lint (push) Waiting to run
StreamFlow CI/CD / Frontend Tests (push) Waiting to run
StreamFlow CI/CD / Android TV Build (push) Waiting to run
StreamFlow CI/CD / Docker Build (push) Blocked by required conditions
StreamFlow CI/CD / Docker Publish (push) Blocked by required conditions
Release APKs / Build TV APK (push) Has been cancelled
Release APKs / Build Mobile APK (push) Has been cancelled
Release APKs / Create Release (push) Has been cancelled
v3.9.1: update docker-compose and deploy script for kv-netflix registry
2026-03-01 13:53:14 +07:00

22 lines
542 B
YAML

version: '3.8'
services:
streamflow:
image: git.khoavo.myds.me/vndangkhoa/kv-netflix:v3.9.1
container_name: streamflow
platform: linux/amd64
ports:
- "3478:8000"
environment:
- DATABASE_URL=/app/data/streamflow.db
- PORT=8000
- TZ=Asia/Ho_Chi_Minh
volumes:
- ./data:/app/data
restart: unless-stopped
healthcheck:
test: [ "CMD", "wget", "-q", "--spider", "http://localhost:8000/api/health" ]
interval: 30s
timeout: 10s
retries: 3
start_period: 10s