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
- Make sure you have Docker installed on your Windows 11 machine.
- You also need to have a Plex Media Server or Emby Media Server installed.
- Have a basic understanding of Docker and its commands.
Steps
Open PowerShell in Windows 11.
Run the following command to pull the latest Ombi image:
docker pull linuxserver/ombi
- 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:
- Replace
/path/to/appdata/configwith the directory path where you want to store your Ombi configuration files. - Replace
/path/to/downloadswith the directory where you want to store your media downloads.
- Start the newly created container with this command:
docker start ombi
- You can check the status of the container using this command:
docker ps -a
- Open the Ombi web interface by typing in your web browser's address bar:
http://{yourserverip}:3579
Notes:
- Replace
{yourserverip}with the IP address of your Windows 11 machine.
You should now see the Ombi login page. Create a new account and log in.
Follow the on-screen instructions to configure Ombi to your liking.
Congratulations! You have successfully installed Ombi on your Windows 11 machine using Docker.