Migrated git root from W:/programming/Projects/ to W:/programming/Projects/Tubearr/. Previous history preserved in Tubearr-full-backup.bundle at parent directory. Completed milestones: M001 through M005 Active: M006/S02 (Add Channel UX)
20 lines
464 B
YAML
20 lines
464 B
YAML
services:
|
|
tubearr:
|
|
build:
|
|
context: .
|
|
container_name: tubearr
|
|
ports:
|
|
- "8989:8989"
|
|
volumes:
|
|
- ./config:/config
|
|
- ./media:/media
|
|
environment:
|
|
- NODE_ENV=production
|
|
- TUBEARR_PORT=8989
|
|
healthcheck:
|
|
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://127.0.0.1:8989/ping"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|
|
start_period: 15s
|
|
restart: unless-stopped
|