Skip to content

Download

Download it. Watch it. Together.

Moovo for Windows, with the Mac app coming soon. It's free and updates itself in the background (never in the middle of a movie).

Moovo 1.0 is almost here. Downloads open with the first release.

The version everyone should use. Updates install themselves, never mid-movie.

macOS

macOS 12 or later · Apple silicon (M1 or newer)

Coming soon

Moovo for macOS isn't out yet. It'll be right here when it is.

Windows

Windows 10 (21H2) or 11 · 64-bit · no admin rights needed

Coming soon

Moovo for Windows isn't out yet. It'll be right here when it is.

iPhone & iPad coming later

In the works. Downloads and Watch Together, in your pocket.

Android coming later

Coming after iOS, from the same app.

Linux desktop coming later

Not yet, but the server runs beautifully on Linux.

For the host

Install the server

One person runs the server next to their movies: a NAS, a Mac mini, an old PC. It's a single Docker container that mounts your folders read-only.

  1. 1. Save the file on the right and point the volumes at your Movies and TV folders.
  2. 2. Start it and copy the one-time setup code from the logs.
  3. 3. Open the app → Set up a new server → paste the code.
Full self-hosting guide →
docker-compose.yml
# docker-compose.yml
services:
  moovo:
    image: ghcr.io/moovoapp/server:latest
    restart: unless-stopped
    ports:
      - "8080:8080"
    environment:
      MOOVO_PUBLIC_URL: https://movies.example.com   # how your people reach it
      MOOVO_MOVIE_ROOTS: /media/movies
      MOOVO_TV_ROOTS: /media/tv
      TMDB_API_KEY: ${TMDB_API_KEY:-}                # optional: posters & details
      TZ: America/New_York
    volumes:
      - ./data:/data                  # database, artwork, subtitles
      - /path/to/Movies:/media/movies:ro   # read-only: it never modifies your files
      - /path/to/TV:/media/tv:ro
terminal
docker compose up -d
docker compose logs -f moovo   # prints the one-time setup code