Skip to content

Download TVS

Download the TVS Launcher for your platform, move it to its own folder and run it. The launcher will automatically download and update TVS for you. See Using the Launcher for more information.

Download Launcher for Windows

Download Launcher for Raspberry Pi

Download Launcher for other Linux distributions on GitHub

Next Steps

You can also download the latest static website version of TVS and host it yourself. This is useful for shared web hosting, GitHub Pages or other static site hosts or if you have a web server already set up.

Download on GitHub

Next Steps

You can run TVS as a Docker container. This is useful for self-hosting or deploying to cloud platforms that support Docker.

View on Docker Hub
Terminal window
docker run -d \
--name tvs-server \
-p 80:3000 \
-v /path/to/your/config.tvs.yml:/home/static/config.tvs.yml \
-v /path/to/your/content:/home/static/content \
--restart unless-stopped \
zshall/television-simulator:latest
docker-compose.yml
services:
tvs-server:
image: 'zshall/television-simulator:latest'
restart: unless-stopped
ports:
- '80:3000'
volumes:
- /var/tvs/config.tvs.yml:/home/static/config.tvs.yml
- /var/tvs/content:/home/static/content

Next Steps