From a84276579bef1050a6aa120b8ea3d0a59fbdbd95 Mon Sep 17 00:00:00 2001 From: minicoz Date: Fri, 28 Jun 2024 09:08:09 -0700 Subject: [PATCH 1/3] adding in docker compose instructions --- README.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/README.md b/README.md index a0218754..8dd2cc7e 100644 --- a/README.md +++ b/README.md @@ -70,6 +70,27 @@ docker build -t feishin . docker run --name feishin -p 9180:9180 feishin ``` +#### Docker Compose +To install via Docker Compose use the following snippit. This also works on Portainer. +``` +version: '3' +services: + feishin: + container_name: feishin + image: 'ghcr.io/jeffvli/feishin:latest' + environment: + - PUID=1000 + - PGID=1000 + - UMASK=002 + - TZ=America/Los_Angeles + volumes: + - /home/Configs/Feishin:/config + ports: + - 9180:9180 + restart: unless-stopped +``` + + ### Configuration 1. Upon startup you will be greeted with a prompt to select the path to your MPV binary. If you do not have MPV installed, you can download it [here](https://mpv.io/installation/) or install it using any package manager supported by your OS. After inputting the path, restart the app. From c960cc44b73d37375a95611d33846a756cba2d76 Mon Sep 17 00:00:00 2001 From: minicoz Date: Fri, 28 Jun 2024 09:10:47 -0700 Subject: [PATCH 2/3] adding env options --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 8dd2cc7e..de056a22 100644 --- a/README.md +++ b/README.md @@ -79,6 +79,10 @@ services: container_name: feishin image: 'ghcr.io/jeffvli/feishin:latest' environment: + - SERVER_NAME=jellyfin # pre defined server name + - SERVER_LOCK=true # When true AND name/type/url are set, only username/password can be toggled + - SERVER_TYPE=jellyfin # navidrome also works + - SERVER_URL= # http://address:port - PUID=1000 - PGID=1000 - UMASK=002 From b053538f94ce09115d01ff535060cbdf01bb6273 Mon Sep 17 00:00:00 2001 From: mlnl Date: Wed, 3 Jul 2024 18:51:46 +0000 Subject: [PATCH 3/3] Update README.md removed unused volume --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index de056a22..39d59be1 100644 --- a/README.md +++ b/README.md @@ -87,8 +87,6 @@ services: - PGID=1000 - UMASK=002 - TZ=America/Los_Angeles - volumes: - - /home/Configs/Feishin:/config ports: - 9180:9180 restart: unless-stopped