浏览代码

WIP - Plex

Nicolas Meienberger 3 年之前
父节点
当前提交
ee61c7ce65
共有 3 个文件被更改,包括 39 次插入0 次删除
  1. 20 0
      apps/plex/config.json
  2. 19 0
      apps/plex/docker-compose.yml
  3. 0 0
      apps/plex/metadata/description.md

+ 20 - 0
apps/plex/config.json

@@ -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 - 0
apps/plex/docker-compose.yml

@@ -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 - 0
apps/plex/metadata/description.md