深度阅读

How to install linuxserver/medusa

作者
作者
2023年08月22日
更新时间
11.88 分钟
阅读时间
0
阅读量

To install linuxserver/medusa, you can use Docker by following these steps:

  1. Make sure you have Docker installed on your system.
  2. 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.

  1. Once you have created the container, start it by running the following command:
docker start medusa
  1. 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.

相关标签

博客作者

热爱技术,乐于分享,持续学习。专注于Web开发、系统架构设计和人工智能领域。