mirror of
https://github.com/jeffvli/feishin.git
synced 2024-11-20 14:37:06 +01:00
28bb699024
* Moved build to docker stage. * Do not copy node_modules to the docker image * Optimize Docker builds * Lock a predefined server with enviroment variables * Added a example docker compose file * Removed useless layer * Fix error with empty server type * pass process via preload, use file, strict server check * remove duplicate content-type * update readme, docker compose * bugfix: server lock false, not jellyfin * fix preload type definition * fix docker, web server lock check --------- Co-authored-by: Kendall Garner <17521368+kgarner7@users.noreply.github.com>
14 lines
468 B
YAML
14 lines
468 B
YAML
version: '3.5'
|
|
services:
|
|
feishin:
|
|
container_name: feishin
|
|
image: jeffvli/feishin
|
|
restart: unless-stopped
|
|
ports:
|
|
- 9180:9180
|
|
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
|