-
Notifications
You must be signed in to change notification settings - Fork 675
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3439 from nextcloud/enh/noid/add-plex
- Loading branch information
Showing
3 changed files
with
51 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
{ | ||
"aio_services_v1": [ | ||
{ | ||
"container_name": "nextcloud-aio-plex", | ||
"display_name": "Plex", | ||
"image": "plexinc/pms-docker", | ||
"image_tag": "latest", | ||
"internal_port": "host", | ||
"restart": "unless-stopped", | ||
"environment": [ | ||
"TZ=%TIMEZONE%", | ||
"PLEX_UID=33", | ||
"PLEX_GID=33" | ||
], | ||
"volumes": [ | ||
{ | ||
"source": "nextcloud_aio_plex", | ||
"destination": "/config", | ||
"writeable": true | ||
}, | ||
{ | ||
"source": "%NEXTCLOUD_DATADIR%", | ||
"destination": "/data", | ||
"writeable": false | ||
}, | ||
{ | ||
"source": "%NEXTCLOUD_MOUNT%", | ||
"destination": "%NEXTCLOUD_MOUNT%", | ||
"writeable": false | ||
} | ||
], | ||
"devices": [ | ||
"/dev/dri" | ||
] | ||
} | ||
] | ||
} |
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,13 @@ | ||
## Plex | ||
This container bundles Plex and auto-configures it for you. | ||
|
||
### Notes | ||
- This is not working on Docker Desktop since it needs `network_mode: host` in order to work correctly. | ||
- See https://github.com/nextcloud/all-in-one/tree/main/community-containers how to add it to the AIO stack | ||
- After adding the container, you need to visit http://ip.address.of.server:32400 in order to claim your server with a plex account | ||
|
||
### Repository | ||
https://github.com/plexinc/pms-docker | ||
|
||
### Maintainer | ||
https://github.com/szaimen |
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