Merge pull request #654 from minicoz/feat/docker-compose-readme
Adding in docker compose instructions to README
This commit is contained in:
commit
fb930f1197
1 changed files with 23 additions and 0 deletions
23
README.md
23
README.md
|
@ -70,6 +70,29 @@ docker build -t feishin .
|
||||||
docker run --name feishin -p 9180:9180 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:
|
||||||
|
- 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
|
||||||
|
- TZ=America/Los_Angeles
|
||||||
|
ports:
|
||||||
|
- 9180:9180
|
||||||
|
restart: unless-stopped
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
### Configuration
|
### 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.
|
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.
|
||||||
|
|
Reference in a new issue