Docker install in one command
The installer script is a normal file served from our site — use it directly with curl or wget, save it first, or open the raw URL in your browser. On Linux it can install missing pieces (curl, wget, unzip, Docker Engine via Docker's official script), download the Compose bundle from muvo.tv, pull the container image, and start the stack.
Curl (recommended)
curl -fsSL https://www.muvo.tv/api/download/install-muvo-docker | sudo bashwget
wget -qO- https://www.muvo.tv/api/download/install-muvo-docker | sudo bash- Private registry: export
MUVO_DOCKER_IMAGE=your.registry/muvo:tagbefore the one-liner (usedocker loginif needed). - Air-gapped / no auto-install:
MUVO_NO_AUTO_INSTALL=1— you must provide Docker, Compose v2, curl or wget, and unzip yourself. - macOS: install Docker Desktop first, then you can run the curl line without sudo once Docker is running.
- Windows: use WSL2 (Ubuntu) and run the Linux one-liner there.
The same script URL is listed on the Download page under Docker. Source builds from a private Git clone use MUVO_DOCKER_INSTALL_MODE=source and MUVO_GIT_URL.