Replies: 16 comments
-
@qdm12 is more or less the only maintainer of this project and works on it in his free time.
|
Beta Was this translation helpful? Give feedback.
-
Be careful exposing your credentials as you did. |
Beta Was this translation helpful? Give feedback.
-
Thanks @frepke ! @kajvans I'm not sure what produces |
Beta Was this translation helpful? Give feedback.
-
sabnzbd and qbittorrent both give the same error. Also when trying to run it in the same compose file nothing changes |
Beta Was this translation helpful? Give feedback.
-
Are you on a OpenMediaVault box? If yes, don't use UID 998 and GID 100. Can you also post the combined compose-file |
Beta Was this translation helpful? Give feedback.
-
version: "3"
services:
gluetun:
image: qmcgaw/gluetun
container_name: gluetun
cap_add:
- NET_ADMIN
networks:
- services
environment:
- PUID=998
- PGID=100
- TZ=Europe/Berlin
- VPN_SERVICE_PROVIDER=expressvpn
- OPENVPN_USER=
- OPENVPN_PASSWORD=
- SERVER_COUNTRIES=Netherlands
- FIREWALL_VPN_INPUT_PORTS=57786
volumes:
- /srv/mergerfs/config/appdata/gluetun:/gluetun
ports:
- 8086:8000/tcp
- 8080:8080 # SABnzbd WEB GUI
- 8081-8085:8081-8085 # qBittorrent WEB GUI
- 6881-6885:6881-6885/udp
- 6881-6885:6881-6885
- 8888:8888/tcp # HTTP proxy
- 8388:8388/tcp # Shadowsocks
- 8388:8388/udp # Shadowsocks
restart: unless-stopped
qbittorrent:
# latest version has a memory leak on Debian/Ubuntu by the looks of it
image: lscr.io/linuxserver/qbittorrent:14.3.9
container_name: qbittorrent
network_mode: service:gluetun
environment:
- PUID=998
- PGID=100
- TZ=Europe/Berlin
- WEBUI_PORT=8082
volumes:
- /srv/mergerfs/config/appdata/qbittorrent:/config
- /srv/mergerfs/pool/share_media/:/data
restart: unless-stopped
sabnzbd:
image: lscr.io/linuxserver/sabnzbd:latest
restart: unless-stopped
network_mode: service:gluetun
container_name: sabnzbd
environment:
- PUID=998
- PGID=100
- TZ=Europe/Berlin
volumes:
- /srv/mergerfs/config/appdata/sabnzbd:/config
- /srv/mergerfs/pool/share_media/:/data #optional
- /srv/mergerfs/pool/share_media/incomplete:/incomplete-downloads
networks:
services:
external: true I try to access it by ip:ports |
Beta Was this translation helpful? Give feedback.
-
When it's an OMV machine, UID 998 is the OMV admin user. It gives you user and permission issues (you can read a lot of this mistake on the OMV forum). In OMV you can create a new user for your docker-containers if you want. |
Beta Was this translation helpful? Give feedback.
-
so i should just remove it? |
Beta Was this translation helpful? Give feedback.
-
No, create a new user and use the UID and GID from that user. |
Beta Was this translation helpful? Give feedback.
-
Oke I will, but that is not the reason that I first could access containers behind gluetun and now not. Did not change anything in the container only installed a fresh os so maybe the firewall problem but that is also weird because my computer has completed access and also all the ports are open |
Beta Was this translation helpful? Give feedback.
-
Not sure if this problem has anything to do with Gluetun. |
Beta Was this translation helpful? Give feedback.
-
Oke so it is a problem with newer versions of docker. So sort of a problem with gluetun (I think) |
Beta Was this translation helpful? Give feedback.
-
That's weird, I've all updated to the latest and never have this issue on my server. |
Beta Was this translation helpful? Give feedback.
-
This is my compose-file:
|
Beta Was this translation helpful? Give feedback.
-
I have the firewall on manual for docker maybe there is a problem. I allowed my IP address but that did not fix anything but should I maybe add a rewrite in my firewall? |
Beta Was this translation helpful? Give feedback.
-
This definitely doesn't look a Gluetun bug, more of a configuration issue on the host, so I'm converting this to a discussion. Feel free to continue the debugging conversation over there. If there is a fix for it that could be incorporated into Gluetun, then please later open a new issue and I'll look into it. |
Beta Was this translation helpful? Give feedback.
-
Is this urgent?
No
Host OS
Debian 12
CPU arch
x86_64
VPN service provider
ExpressVPN
What are you using to run the container
docker-compose
What is the version of Gluetun
Running version latest built on Jun 28, 2024
What's the problem 🤔
i cant access my services that are running behind the container.
this is how i connect to my container: network_mode: container:gluetun
gluetin itself is working and i can see its ip that is has.
I want to access my services on port 8080 and 8082 but when i try connecting it just gives me: "site cant be reached"
All my containers that are not in the gluetun network also can access the other services only things not on the computer cant acces them
Share your logs (at least 10 lines)
Share your configuration
Beta Was this translation helpful? Give feedback.
All reactions