2025-07-15, 09:57 PM
Thanks for answer.
I have make some test and I can't make it work.
I have change my docker compose file for use the same network
Docker Compose of SWAG (with network config)
Jellyfin docker compose
So I have
public mydomain.fr
physiqual IP Address of OpenMediaVault serveur (192.168.2.200)
SWAG container IP 172.100.0.10
Jellyfin container IP 172.100.0.11
I try with 192.168.2.200 and 172.100.0.10 but each time I have trouble and I need to stop jellyfin and restore network.xml config file of jellyfin
What IP I need to configure?
Thanks for help
I have make some test and I can't make it work.
I have change my docker compose file for use the same network
Docker Compose of SWAG (with network config)
Code:
services:
swag:
image: linuxserver/swag
container_name: swag
cap_add:
- NET_ADMIN
environment:
- PUID=1003
- PGID=100
- TZ=Europe/Paris
- EMAIL=myemail@domain.com
- URL=mydomain.fr
- SUBDOMAINS=wildcard
- VALIDATION=dns
- DNSPLUGIN=ovh
- STAGING=false
networks:
https_network:
ipv4_address: 172.100.0.10
ports:
- 6443:443
- 680:80 # optional
volumes:
- CHANGE_TO_COMPOSE_DATA_PATH/swag_config:/config
restart: unless-stopped
networks:
https_network:
name: https_network
driver: bridge
ipam:
config:
- subnet: 172.100.0.0/16
gateway: 172.100.0.1
Jellyfin docker compose
Code:
services:
jellyfin:
container_name: jellyfin
hostname: jellyfin
image: jellyfin/jellyfin:10.10.6
restart: unless-stopped
group_add:
- 107 # render host group
networks:
https_network:
ipv4_address: 172.100.0.11
ports:
- 8096:8096
volumes:
- CHANGE_TO_COMPOSE_DATA_PATH/jellyfin_config:/config
- CHANGE_TO_COMPOSE_DATA_PATH/jellyfin_cache:/cache
- CHANGE_TO_COMPOSE_DATA_PATH/swag_config/etc/letsencrypt/live/mydomain.fr:/certificat:ro
- /srv/mergerfs/pool_Videos/BRRip:/BRRip:ro
- /srv/mergerfs/pool_Videos/Divx:/Divx:ro
- /srv/mergerfs/pool_Videos/Series:/Series:ro
devices:
- /dev/dri/renderD128:/dev/dri/renderD128
networks:
https_network:
external: true
So I have
public mydomain.fr
physiqual IP Address of OpenMediaVault serveur (192.168.2.200)
SWAG container IP 172.100.0.10
Jellyfin container IP 172.100.0.11
I try with 192.168.2.200 and 172.100.0.10 but each time I have trouble and I need to stop jellyfin and restore network.xml config file of jellyfin
What IP I need to configure?
Thanks for help