Installing Ombi on Fedora CoreOS Latest
Ombi is a media request service that enables users to request and manage media content, such as movies and TV shows, for a Plex or Emby server. In this tutorial, we will show you how to install Ombi on Fedora CoreOS using Docker.
Prerequisites
Before starting this tutorial, make sure you have the following prerequisites:
- A server with Fedora CoreOS installed
- Docker installed on your machine
- Basic knowledge of Linux commands
Step 1: Create a Docker Container for Ombi
Open the terminal and connect to your Fedora CoreOS server using an SSH client.
Create a directory to store your configuration files:
sudo mkdir /opt/ombiCreate a file named
docker-compose.ymlin the/opt/ombidirectory:sudo nano /opt/ombi/docker-compose.ymlPaste the following code into the file:
version: '3.3' services: ombi: image: linuxserver/ombi container_name: ombi environment: - PUID=1000 - PGID=1000 - TZ=America/New_York # Change this to your timezone volumes: - /opt/ombi:/config - /downloads:/downloads ports: - '3579:3579' # Change this port if necessary restart: unless-stoppedSave the file by pressing
Ctrl+O, then pressCtrl+Xto exit the editor.
Step 2: Start the Ombi Container
Run the following command to start the Ombi container:
sudo docker-compose -f /opt/ombi/docker-compose.yml up -dWait for a few minutes for the container to start. You can check the container logs using the following command:
sudo docker logs -f ombiWhen the container is ready, open a web browser and go to
http://<your-server-ip>:3579. You should see the Ombi login page.Click on the
Sign in with Plexbutton to sign in with your Plex account. Follow the on-screen instructions to complete the setup.
Conclusion
In this tutorial, we have shown you how to install Ombi on Fedora CoreOS using Docker. You can now start using Ombi to manage your media requests. If you encounter any issues during the installation process, you can check the Ombi documentation for troubleshooting tips.