You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
### Any additional info
Seems that connection is working like a second after start and is on VPN, but then fails.
### Code of Conduct & PII Redaction
- [X] I agree to follow this project's Code of Conduct.
- [X] I have removed any sensitive personally identifying information(PII) and secrets from in this issue report.
The text was updated successfully, but these errors were encountered:
I did minimal configuration from example, and still the same issue:
version: '2.3'
services:
protonwire:
container_name: protonwire
# Use semver tags or sha256 hashes of manifests.
# using latest tag can lead to issues when used with
# automatic image updaters like watchtower/podman.
image: ghcr.io/tprasadtp/protonwire:latest
init: true
restart: unless-stopped
environment:
# Quote this value as server name can contain '#'.
WIREGUARD_PRIVATE_KEY: "REMOVED"
PROTONVPN_SERVER: ${PROTONVPN_SERVER:-node-cz-05.protonvpn.net}
# Set this to 1 to show debug logs for issue forms.
DEBUG: "0"
# Set this to 0 to disable kill-switch.
KILL_SWITCH: "1"
IPCHECK_INTERVAL: 0
# NET_ADMIN capability is mandatory!
cap_add:
- NET_ADMIN
# sysctl net.ipv4.conf.all.rp_filter is mandatory!
# net.ipv6.conf.all.disable_ipv6 disables IPv6 as protonVPN does not support IPv6.
# 'net.*' sysctls are not required on application containers,
# as they share network stack with protonwire container.
sysctls:
net.ipv4.conf.all.rp_filter: 2
net.ipv6.conf.all.disable_ipv6: 1
volumes:
- type: tmpfs
target: /tmp
ports:
- 127.0.0.1:5800:5800
# This is sample application which will be routed over VPN
# Replace this with your preferred application(s).
firefox:
depends_on:
- protonwire
environment:
TZ: "Europe/Prague"
PGID: "1000"
PUID: "1000"
SECURE_CONNECTION: 1
DARK_MODE: 1
KEEP_APP_RUNNING: 1
image: jlesage/firefox
restart: unless-stopped
userns_mode: host
# Do not apply any networking configs
# on this container!
# All networking labels and settings should be defined
# on the vpn container.
network_mode: service:protonwire
volumes:
- ./data:/config
Version
latest
Credential and Server Validation
nl-free-127.protonvpn.net
or server IP) as mentioned in the docs.System Architecture
Linux kni 6.8.0-47-generic #47-Ubuntu SMP PREEMPT_DYNAMIC Fri Sep 27 21:40:26 UTC 2024 x86_64 x86_64 x86_64 GNU/Linux
Kernel Version
6.8.0-47-generic
Running on a NAS?
No
Runtime
docker
Version of Runtime
My configuration
Whitelisting API endpoints
I am not using ad-blocking DNS server or gateway
Troubleshooting & Runtime
Container/Pod/systemd log output with DEBUG=1 or
--debug
flagThe text was updated successfully, but these errors were encountered: