Removed $USER environment variable in Jellyfin
- Added music directory to Jellyfin
This commit is contained in:
parent
e3cacb5d1f
commit
e3f53e1f46
2 changed files with 11 additions and 7 deletions
13
jellyfin.yml
13
jellyfin.yml
|
@ -2,19 +2,18 @@ services:
|
||||||
jellyfin:
|
jellyfin:
|
||||||
image: lscr.io/linuxserver/jellyfin:latest
|
image: lscr.io/linuxserver/jellyfin:latest
|
||||||
container_name: jellyfin
|
container_name: jellyfin
|
||||||
environment:
|
|
||||||
- USER=tonytins
|
|
||||||
ports:
|
ports:
|
||||||
- 8075:8096
|
- 8075:8096
|
||||||
#- 8920:8920 #optional
|
#- 8920:8920 #optional
|
||||||
#- 7359:7359/udp #optional
|
#- 7359:7359/udp #optional
|
||||||
#- 1900:1900/udp #optional
|
#- 1900:1900/udp #optional
|
||||||
volumes:
|
volumes:
|
||||||
- /home/$USER/docker-compose/jellyfin-docker/config:/config
|
- /home/tonytins/docker-compose/jellyfin-docker/config:/config
|
||||||
- /home/$USER/docker-compose/jellyfin-docker/cache:/cache
|
- /home/tonytins/docker-compose/jellyfin-docker/cache:/cache
|
||||||
- /home/$USER/Shared/Shows:/media/Shows
|
- /home/tonytins/Shared/Music:/media/Music
|
||||||
- /home/$USER/Shared/Films:/media/Films
|
- /home/tonytins/Shared/Shows:/media/Shows
|
||||||
- /home/$USER/Shared/YouTube:/media/YouTube
|
- /home/tonytins/Shared/Films:/media/Films
|
||||||
|
- /home/tonytins/Shared/YouTube:/media/YouTube
|
||||||
restart: "unless-stopped"
|
restart: "unless-stopped"
|
||||||
networks:
|
networks:
|
||||||
- portainer_default
|
- portainer_default
|
||||||
|
|
|
@ -16,6 +16,11 @@ services:
|
||||||
# that restarting the container will not delete your settings or DB.
|
# that restarting the container will not delete your settings or DB.
|
||||||
- $HOME/.server/tunarr:/config/tunarr
|
- $HOME/.server/tunarr:/config/tunarr
|
||||||
restart: "unless-stopped"
|
restart: "unless-stopped"
|
||||||
|
networks:
|
||||||
|
- portainer_default
|
||||||
|
# Optional - alternative address used for autodiscovery
|
||||||
|
#environment:
|
||||||
|
# - JELLYFIN_PublishedServerUrl=http://example.com
|
||||||
networks:
|
networks:
|
||||||
portainer_default:
|
portainer_default:
|
||||||
external: true
|
external: true
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue