Search found 4 matches

by Freescreen
Sat Mar 15, 2025 8:36 am
Forum: Installation
Topic: [Solved] static IP for Containers
Replies: 2
Views: 1109
Argentina

Re: static IP for Containers

Thanks , it works!
yaml>

Code: Select all

networks:
  netya: # here we set the network name
    driver: bridge
    ipam:
      driver: default
      config:
      - subnet:  172.19.0.0/16
        gateway: 172.19.0.1

For containers>

Code: Select all

networks:
       netya:
         ipv4_address: 172.19.0.2
by Freescreen
Fri Mar 14, 2025 4:01 pm
Forum: Linux troubleshooting
Topic: Connecting separate container to Gluetun?
Replies: 1
Views: 5600
Argentina

Re: Connecting separate container to Gluetun?

Hi, maybe this helps you. I have qbittorrent and autobrr behind gluetun. Add this: network_mode: "service:gluetun" Add the port to gluetun (See at yams.media) I look in yams_default network. docker inspect yams_default Then i See "gluetun". In this IP/host, there all containers b...
by Freescreen
Fri Mar 14, 2025 3:39 pm
Forum: Installation
Topic: Clean YAMS Installation, Issue with Gluetun starting (protonvpn)
Replies: 2
Views: 4185
Argentina

Re: Clean YAMS Installation, Issue with Gluetun starting (protonvpn)

Maybe it helps: proton works for me like this: This works with wireguard and protonvpn pay Version. Only change the xxxx with your Details gluetun: image: qmcgaw/gluetun:latest container_name: gluetun cap_add: - NET_ADMIN devices: - /dev/net/tun:/dev/net/tun ports: - 8888:8888/tcp # HTTP proxy - 838...
by Freescreen
Fri Mar 14, 2025 3:31 pm
Forum: Installation
Topic: [Solved] static IP for Containers
Replies: 2
Views: 1109
Argentina

[Solved] static IP for Containers

Hi, i have autobrr behind gluetun. So i must every restart update the IP Form radarr and sonarr. How can i get static IP for the network containers. I try this one to radarr, but there come an error: validating /opt/yams/docker-compose.yaml: services.networks Additional property default is not allow...