Jellyfin now has $USER environment variable
This commit is contained in:
parent
071a275f70
commit
e3cacb5d1f
3 changed files with 12 additions and 8 deletions
|
@ -1,3 +1,5 @@
|
|||
#!/bin/sh
|
||||
docker stop $(docker ps -a -q)
|
||||
docker kill $(docker ps -q)
|
||||
docker rm $(docker ps -a -q)
|
||||
docker system prune -a
|
12
jellyfin.yml
12
jellyfin.yml
|
@ -2,17 +2,19 @@ services:
|
|||
jellyfin:
|
||||
image: lscr.io/linuxserver/jellyfin:latest
|
||||
container_name: jellyfin
|
||||
environment:
|
||||
- USER=tonytins
|
||||
ports:
|
||||
- 8075:8096
|
||||
#- 8920:8920 #optional
|
||||
#- 7359:7359/udp #optional
|
||||
#- 1900:1900/udp #optional
|
||||
volumes:
|
||||
- $HOME/docker-compose/jellyfin-docker/config:/config
|
||||
- $HOME/docker-compose/jellyfin-docker/cache:/cache
|
||||
- $HOME/Shared/Shows:/media/Shows
|
||||
- $HOME/Shared/Films:/media/Films
|
||||
- $HOME/Shared/YouTube:/media/YouTube
|
||||
- /home/$USER/docker-compose/jellyfin-docker/config:/config
|
||||
- /home/$USER/docker-compose/jellyfin-docker/cache:/cache
|
||||
- /home/$USER/Shared/Shows:/media/Shows
|
||||
- /home/$USER/Shared/Films:/media/Films
|
||||
- /home/$USER/Shared/YouTube:/media/YouTube
|
||||
restart: "unless-stopped"
|
||||
networks:
|
||||
- portainer_default
|
||||
|
|
|
@ -3,8 +3,8 @@ services:
|
|||
image: chrisbenincasa/tunarr:latest-arm64
|
||||
container_name: tunarr
|
||||
ports:
|
||||
- ${TUNARR_SERVER_PORT:-8000}:8000
|
||||
- ${TUNARR_SERVER_PORT:-8000}:8000
|
||||
- ${TUNARR_SERVER_PORT:-8043}:8000
|
||||
- ${TUNARR_SERVER_PORT:-8043}:8000
|
||||
environment:
|
||||
- LOG_LEVEL=${TUNARR_LOG_LEVEL:-INFO}
|
||||
- TZ=America/New_York
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue