How to Install Ombi on Windows 11

Ombi is a popular open source media request and self-hosted platform. Here is a simple step-by-step guide on how to install Ombi on your Windows 11 machine using Docker.

Prerequisites

Steps

  1. Open PowerShell in Windows 11.

  2. Run the following command to pull the latest Ombi image:

docker pull linuxserver/ombi
  1. After downloading the image, create a new container using this command:
    docker create \
    --name=ombi \
    -e PUID=1000 \
    -e PGID=1000 \
    -e TZ=America/New_York \
    -e UMASK_SET=022 \
    -e WEBUI_PORT=3579 \
    -p 3579:3579 \
    -v /path/to/appdata/config:/config \
    -v /path/to/downloads:/downloads \
    --restart unless-stopped \
    linuxserver/ombi

Notes:

  1. Start the newly created container with this command:
docker start ombi
  1. You can check the status of the container using this command:
docker ps -a
  1. Open the Ombi web interface by typing in your web browser's address bar:
http://{yourserverip}:3579

Notes:

  1. You should now see the Ombi login page. Create a new account and log in.

  2. Follow the on-screen instructions to configure Ombi to your liking.

Congratulations! You have successfully installed Ombi on your Windows 11 machine using Docker.

If you want to self-host in an easy, hands free way, need an external IP address, or simply want your data in your own hands, give IPv6.rs a try!