Can't connect to PIA with docker mod taisun/config-mods:pia

Hi, using blog post from here → Customizing our Containers | LinuxServer.io and this post How to add VPN to qbittirrent container

i’ve got qbittorent service in docker-compose.yml described as

qbittorrent:
    image: lscr.io/linuxserver/qbittorrent
    container_name: qbittorrent
    environment:
      - WEBUI_PORT=8088
      - DOCKER_MODS=taisun/config-mods:pia
      - PIAUSER=mypiausername
      - PIAPASS=mypassword
      - PIAENDPOINT=Sweden
    cap_add:
      - NET_ADMIN
    env_file:                           
      - 'variables.env'  
    volumes:
      - /config:/config
      - /downloads:/downloads
    ports:
      - 6881:6881
      - 6881:6881/udp
      - 8088:8088
    restart: unless-stopped

after running docker-compose up I can see in qbittorrent logs

qbittorrent    | [services.d] starting services
qbittorrent    | [services.d] done.
qbittorrent    | Tue Oct 19 08:25:23 2021 OpenVPN 2.4.7 arm-unknown-linux-gnueabihf [SSL (OpenSSL)] [LZO]
[LZ4] [EPOLL] [PKCS11] [MH/PKTINFO] [AEAD] built on Jul 19 2021
qbittorrent    | Tue Oct 19 08:25:23 2021 library versions: OpenSSL 1.1.1f  31 Mar 2020, LZO 2.10
qbittorrent    | Tue Oct 19 08:25:27 2021 TCP/UDP: Preserving recently used remote address: [AF_INET]104.1
6.42.63:1198
qbittorrent    | Tue Oct 19 08:25:27 2021 UDP link local: (not bound)
qbittorrent    | Tue Oct 19 08:25:27 2021 UDP link remote: [AF_INET]104.16.42.63:1198
qbittorrent    | Tue Oct 19 08:26:27 2021 TLS Error: TLS key negotiation failed to occur within 60 seconds
(check your network connectivity)
qbittorrent    | Tue Oct 19 08:26:27 2021 TLS Error: TLS handshake failed
qbittorrent    | Tue Oct 19 08:26:27 2021 SIGUSR1[soft,tls-error] received, process restarting
qbittorrent    | Tue Oct 19 08:26:32 2021 TCP/UDP: Preserving recently used remote address: [AF_INET]104.1
6.41.63:1198
qbittorrent    | Tue Oct 19 08:26:32 2021 UDP link local: (not bound)
qbittorrent    | Tue Oct 19 08:26:32 2021 UDP link remote: [AF_INET]104.16.41.63:1198
qbittorrent    | Tue Oct 19 08:27:32 2021 TLS Error: TLS key negotiation failed to occur within 60 seconds
(check your network connectivity)
qbittorrent    | Tue Oct 19 08:27:32 2021 TLS Error: TLS handshake failed
qbittorrent    | Tue Oct 19 08:27:32 2021 SIGUSR1[soft,tls-error] received, process restarting
qbittorrent    | Tue Oct 19 08:27:41 2021 TCP/UDP: Preserving recently used remote address: [AF_INET]104.1
6.42.63:1198
qbittorrent    | Tue Oct 19 08:27:41 2021 UDP link local: (not bound)
qbittorrent    | Tue Oct 19 08:27:41 2021 UDP link remote: [AF_INET]104.16.42.63:1198

and container is not getting vpn ip → docker exec qbittorrent curl -sL ifconfig.me returns my public IP

any advice please?