Deploy LibreTV via Docker Compose
mainUse the following docker-compose.yml configuration to manage your LibreTV instance. You can customize the PASSWORD variable in the environment section.
To start the service, run:
docker compose up -dAfter starting, access the application at http://localhost:8899.
services:
libretv:
image: bestzwei/libretv:latest
container_name: libretv
ports:
- "8899:8080" # Maps internal 8080 to host 8899
environment:
- PASSWORD=${PASSWORD:-111111} # Defaults to 111111 if not provided
restart: unless-stopped