WIP - Plex
This commit is contained in:
parent
0d62ebe1bf
commit
ee61c7ce65
3 changed files with 39 additions and 0 deletions
20
apps/plex/config.json
Normal file
20
apps/plex/config.json
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
"name": "Plex",
|
||||||
|
"available": true,
|
||||||
|
"port": 8103,
|
||||||
|
"id": "plex",
|
||||||
|
"url_suffix": "/web",
|
||||||
|
"categories": ["media"],
|
||||||
|
"description": "",
|
||||||
|
"short_desc": "",
|
||||||
|
"author": "",
|
||||||
|
"source": "",
|
||||||
|
"image": "",
|
||||||
|
"form_fields": {
|
||||||
|
"claim": {
|
||||||
|
"type": "text",
|
||||||
|
"label": "Plex claim (Optional)",
|
||||||
|
"env_variable": "PLEX_CLAIM"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
19
apps/plex/docker-compose.yml
Normal file
19
apps/plex/docker-compose.yml
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
version: "2.1"
|
||||||
|
|
||||||
|
services:
|
||||||
|
plex:
|
||||||
|
image: lscr.io/linuxserver/plex:1.26.2
|
||||||
|
container_name: plex
|
||||||
|
# network_mode: host
|
||||||
|
environment:
|
||||||
|
- PUID=1000
|
||||||
|
- PGID=1000
|
||||||
|
- VERSION=docker
|
||||||
|
volumes:
|
||||||
|
- ${APP_DATA_DIR}/data/config:/config
|
||||||
|
- ${ROOT_FOLDER_HOST}/media/data:/media
|
||||||
|
restart: unless-stopped
|
||||||
|
ports:
|
||||||
|
- ${APP_PORT}:32400
|
||||||
|
networks:
|
||||||
|
- tipi_main_network
|
0
apps/plex/metadata/description.md
Normal file
0
apps/plex/metadata/description.md
Normal file
Loading…
Reference in a new issue