-
Notifications
You must be signed in to change notification settings - Fork 705
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Jellyseerr Community Container (#5911)
Signed-off-by: Anvil5465 <[email protected]> Co-authored-by: Simon L. <[email protected]>
- Loading branch information
Showing
5 changed files
with
57 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{ | ||
"aio_services_v1": [ | ||
{ | ||
"container_name": "nextcloud-aio-jellyseerr", | ||
"display_name": "Jellyseerr", | ||
"documentation": "https://github.com/nextcloud/all-in-one/tree/main/community-containers/jellyseerr", | ||
"image": "fallenbagel/jellyseerr", | ||
"image_tag": "latest", | ||
"internal_port": "5055", | ||
"restart": "unless-stopped", | ||
"ports": [ | ||
{ | ||
"ip_binding": "%APACHE_IP_BINDING%", | ||
"port_number": "5055", | ||
"protocol": "tcp" | ||
} | ||
], | ||
"environment": [ | ||
"PORT=5055", | ||
"TZ=%TIMEZONE%" | ||
], | ||
"volumes": [ | ||
{ | ||
"source": "nextcloud_aio_jellyseerr", | ||
"destination": "/app/config", | ||
"writeable": true | ||
} | ||
], | ||
"backup_volumes": [ | ||
"nextcloud_aio_jellyseerr" | ||
] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
## Jellyseerr | ||
This container bundles Jellyseerr and auto-configures it for you. | ||
|
||
### Notes | ||
- This container is only intended to be used inside home networks as it uses http for its management page by default. | ||
- After adding and starting the container, you can directly visit `http://ip.address.of.server:5055` and access your new Jellyseerr instance, which can be used to manage Plex, Jellyfin, and Emby. | ||
- In order to access your Jellyseerr outside the local network, you have to set up your own reverse proxy. You can set up a reverse proxy following [these instructions](https://github.com/nextcloud/all-in-one/blob/main/reverse-proxy.md) and [Jellyseerr's reverse proxy documentation.](https://docs.jellyseerr.dev/extending-jellyseerr/reverse-proxy), OR use the Caddy community container that will automatically configure requests.$NC_DOMAIN to redirect to your Jellyseerr. | ||
- If you want to secure the installation with fail2ban, you might want to check out https://github.com/nextcloud/all-in-one/tree/main/community-containers/fail2ban | ||
- The config of Jellyseerr will be automatically included in AIO's backup solution! | ||
- See [here](https://github.com/nextcloud/all-in-one/tree/main/community-containers#community-containers) how to add it to the AIO stack. | ||
|
||
### Repository | ||
https://github.com/Fallenbagel/jellyseerr | ||
|
||
### Maintainer | ||
https://github.com/Anvil5465 |