Hi everyone,
i have just installed Unraid, and i have to say it works really well.
I even prefer the docker UI to portainer.
That is why i am migrating my docker stack to Unraid right now.
In doing so, i am setting up a Wireguard VPN, and binding various containers to it.
Something i cannot find however is the option to set specific ports.
A default gluetun docker-compose.yml looks something like this:
version: "3"
services:
gluetun:
image: qmcgaw/gluetun
# container_name: gluetun
# line above must be uncommented to allow external containers to connect.
# See https://github.com/qdm12/gluetun-wiki/blob/main/setup/connect-a-container-to-gluetun.md#external-container-to-gluetun
cap_add:
- NET_ADMIN
devices:
- /dev/net/tun:/dev/net/tun
ports:
- 8888:8888/tcp # HTTP proxy
- 8388:8388/tcp # Shadowsocks
- 8388:8388/udp # Shadowsocks
volumes:
- /yourpath:/gluetun
environment:
# See https://github.com/qdm12/gluetun-wiki/tree/main/setup#setup
- VPN_SERVICE_PROVIDER=ivpn
- VPN_TYPE=openvpn
# OpenVPN:
- OPENVPN_USER=
- OPENVPN_PASSWORD=
# Wireguard:
# - WIREGUARD_PRIVATE_KEY=wOEI9rqqbDwnN8/Bpp22sVz48T71vJ4fYmFWujulwUU=
# - WIREGUARD_ADDRESSES=10.64.222.21/32
# Timezone for accurate log times
- TZ=
# Server list updater
# See https://github.com/qdm12/gluetun-wiki/blob/main/setup/servers.md#update-the-vpn-servers-list
- UPDATER_PERIOD=
Specifically the "ports:" option is something i cannot find in the docker setting in Unraid.
The closest thing i have found in the WEBUI is the "FIREWALL_VPN_INPUT_PORTS:" option, but that is for exposing ports
I have also added the port at the bottom, which is 8080, but the qbittorent container webui is still unreacheable
I thought about posting this to a gluetun forum, but this is a problem specific to Unraid, so i figured this is a better place to ask.
Thanks in advance