How to install linuxserver/medusa
Published on Aug. 22, 2023, 12:20 p.m.
To install linuxserver/medusa, you can use Docker by following these steps:
- Make sure you have Docker installed on your system.
- Create a new Docker container for Medusa by running the following command in your terminal:
docker create \
--name=medusa \
-e PUID=<UID for user> \
-e PGID=<GID for user> \
-e TZ=<timezone> \
-p 8081:8081 \
-v </path/to/medusa/config>:/config \
-v </path/to/tv/shows>:/tv \
-v </path/to/downloads>:/downloads \
--restart unless-stopped \
linuxserver/medusa
Replace <UID for user>
and <GID for user>
with the UID and GID for the user you want to run Medusa as, <timezone>
with your timezone (e.g. America/New_York), </path/to/medusa/config>
with the path to your Medusa configuration folder, </path/to/tv/shows>
with the path to your TV shows folder, and </path/to/downloads>
with the path to your downloads folder.
- Once you have created the container, start it by running the following command:
docker start medusa
- You can now access the Medusa web interface by navigating to
http://localhost:8081
in your web browser.
That’s it! You now have Medusa up and running on your system.