WIP - Plex

This commit is contained in:
Nicolas Meienberger 2022-06-10 09:56:27 +00:00
parent 0d62ebe1bf
commit ee61c7ce65
3 changed files with 39 additions and 0 deletions

20
apps/plex/config.json Normal file
View 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"
}
}
}

View 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

View file