-
Notifications
You must be signed in to change notification settings - Fork 45
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Problem with adding the service ( Jellyfin ) - rejected ports #52
Comments
Hey there, When it comes to Docker, you have two choices regarding port mapping :
@jfroment made his choice in the dev branch regarding Plex, he chose to use I assume the same logic can be applied to Jellyfin. |
Hello ;)
|
I see you added the line |
Hi |
I'm not quite sure I understood the issue.
Concerning the
|
Hello p.s. |
Hello
I would like to replace Plex with Jellyfin
I made some corrections in the config.yaml file:
#Jellyfin
name: jellyfin
enabled: true
VPN: false
customFile: custom/jellyfin.yaml
traefik:
enabled: true
rules:
- host: jellyfin.${TRAEFIK_DOMAIN}
httpAuth: false
internalPort: 8096
httpOnly: true
and I added yaml in custom:
version: '3.5'
services:
jellyfin:
image: jellyfin/jellyfin
container_name: jellyfin
restart: always
network_mode: host
ports:
- "8096:8096"
- "8920:8920" #optional
- "7359:7359/udp" #optional
- "1900:1900/udp" #optional
volumes:
- configjellyfin:/config
- /data/torrents:/media
- /data/config:/cashe
# Optional - alternative address used for autodiscovery
environment:
- TZ=${TZ}
- VERSION=latest
- PGID=${PGID}
- PUID=${PUID}
volumes:
configjellyfin:
driver: local-persist
driver_opts:
mountpoint: $HOST_CONFIG_PATH/jellyfin
I did the same thing as configuring Plex, but I still get an error:
! jellyfin Published ports are discarded when using host network mode
Anyone have an idea where I made a mistake?
Regards
The text was updated successfully, but these errors were encountered: