mirror of
https://github.com/maxdorninger/MediaManager.git
synced 2026-04-19 08:33:27 +02:00
Compare commits
4 Commits
dependabot
...
switch-to-
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
46902bb2fb | ||
|
|
5846b4d703 | ||
|
|
a0c76419c2 | ||
|
|
746e899465 |
@@ -18,7 +18,7 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
MediaManager is modern software to manage your TV and movie library. It is designed to be a replacement for Sonarr,
|
MediaManager is a modern software to manage your TV and movie library. It is designed to be a replacement for Sonarr,
|
||||||
Radarr, Overseer, and Jellyseer.
|
Radarr, Overseer, and Jellyseer.
|
||||||
It supports TVDB and TMDB for metadata, supports OIDC and OAuth 2.0 for authentication and supports Prowlarr and
|
It supports TVDB and TMDB for metadata, supports OIDC and OAuth 2.0 for authentication and supports Prowlarr and
|
||||||
Jackett.
|
Jackett.
|
||||||
@@ -63,7 +63,6 @@ docker compose up -d
|
|||||||
<a href="https://buymeacoffee.com/maxdorninger"><img src="https://cdn.buymeacoffee.com/uploads/profile_pictures/2025/11/2VeQ8sTGPhj4tiLy.jpg" width="80px" alt="PuppiestDoggo" /></a>
|
<a href="https://buymeacoffee.com/maxdorninger"><img src="https://cdn.buymeacoffee.com/uploads/profile_pictures/2025/11/2VeQ8sTGPhj4tiLy.jpg" width="80px" alt="PuppiestDoggo" /></a>
|
||||||
<a href="https://github.com/seferino-fernandez"><img src="https://avatars.githubusercontent.com/u/5546622" width="80px" alt="Seferino" /></a>
|
<a href="https://github.com/seferino-fernandez"><img src="https://avatars.githubusercontent.com/u/5546622" width="80px" alt="Seferino" /></a>
|
||||||
|
|
||||||
|
|
||||||
## Star History
|
## Star History
|
||||||
|
|
||||||
[](https://www.star-history.com/#maxdorninger/MediaManager&Date)
|
[](https://www.star-history.com/#maxdorninger/MediaManager&Date)
|
||||||
|
|||||||
@@ -31,3 +31,34 @@ The recommended way to install and run Media Manager is using Docker and Docker
|
|||||||
documentation.
|
documentation.
|
||||||
|
|
||||||
<include from="notes.topic" element-id="auth-admin-emails"></include>
|
<include from="notes.topic" element-id="auth-admin-emails"></include>
|
||||||
|
|
||||||
|
## MediaManager and MetadataRelay Docker Images
|
||||||
|
|
||||||
|
MediaManager is available as a Docker image on both Red Hat Quay.io and GitHub Container Registry (GHCR):
|
||||||
|
|
||||||
|
- `quay.io/maxdorninger/mediamanager`
|
||||||
|
- `ghcr.io/maxdorninger/mediamanager/mediamanager`
|
||||||
|
|
||||||
|
MetadataRelay Images are also available on both registries:
|
||||||
|
|
||||||
|
- `quay.io/maxdorninger/metadata_relay`
|
||||||
|
- `ghcr.io/maxdorninger/mediamanager/metadata_relay`
|
||||||
|
|
||||||
|
From v1.12.1 onwards, both MediaManager and MetadataRelay images are available on both Quay.io and GHCR.
|
||||||
|
The reason for the switch to Quay.io as the primary image registry is due
|
||||||
|
to [GHCR's continued slow performance](https://github.com/orgs/community/discussions/173607).
|
||||||
|
|
||||||
|
<note>
|
||||||
|
You can use either the Quay.io or GHCR images interchangeably,
|
||||||
|
as they are built from the same source and the tags are the same across both registries.
|
||||||
|
</note>
|
||||||
|
|
||||||
|
### Tags
|
||||||
|
|
||||||
|
Both registries support the following tags:
|
||||||
|
- `latest`: Points to the latest stable release.
|
||||||
|
- `master`: Points to the latest commit on the master branch (may be unstable).
|
||||||
|
- `X.Y.Z`: Specific version tags (e.g., `1.12.0`).
|
||||||
|
- `X.Y`: Points to the latest release in the X.Y series (e.g., `1.12`).
|
||||||
|
- `X`: Points to the latest release in the X series (e.g., `1`).
|
||||||
|
- `pr-<number>`: Points to the latest commit in the specified pull request (e.g., `pr-67`).
|
||||||
|
|||||||
@@ -44,3 +44,14 @@ your media library, hard linking will not work.
|
|||||||
<a href="qBittorrent-Category.md">carefully read this page about MM with qBittorrent save paths.</a>
|
<a href="qBittorrent-Category.md">carefully read this page about MM with qBittorrent save paths.</a>
|
||||||
|
|
||||||
<note>If it still doesn't work, <a href="https://github.com/maxdorninger/MediaManager/issues">please open an Issue.</a> It is possible that a bug is causing the issue.</note>
|
<note>If it still doesn't work, <a href="https://github.com/maxdorninger/MediaManager/issues">please open an Issue.</a> It is possible that a bug is causing the issue.</note>
|
||||||
|
|
||||||
|
## Docker Image Pull Issues
|
||||||
|
|
||||||
|
- If you get a 401 or 403 error when pulling the image from GHCR, this is not a permission issue with the
|
||||||
|
repository/image. It errors because your Docker client is misconfigured.
|
||||||
|
- This is not a MediaManager issue per se, so please don't open an issue about this on the MediaManager GitHub repo.
|
||||||
|
|
||||||
|
### Possible Fixes:
|
||||||
|
|
||||||
|
- [Unable to pull image from GitHub Container Registry (Stack Overflow)](https://stackoverflow.com/questions/74656167/unable-to-pull-image-from-github-container-registry-ghcr)
|
||||||
|
- [Try pulling the image from Quay.io](configuration-overview.md#mediamanager-and-metadatarelay-docker-images)
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
services:
|
services:
|
||||||
mediamanager:
|
mediamanager:
|
||||||
container_name: mediamanager_server
|
container_name: mediamanager_server
|
||||||
image: ghcr.io/maxdorninger/mediamanager/mediamanager:latest
|
image: quay.io/maxdorninger/mediamanager:latest
|
||||||
ports:
|
ports:
|
||||||
- "8000:8000"
|
- "8000:8000"
|
||||||
environment:
|
environment:
|
||||||
|
|||||||
Reference in New Issue
Block a user