diff --git a/qbittorrent/docker-compose.yml b/qbittorrent/docker-compose.yml index 45d7e10..4a2c40f 100644 --- a/qbittorrent/docker-compose.yml +++ b/qbittorrent/docker-compose.yml @@ -10,8 +10,32 @@ services: volumes: - /home/ccalifice/docker-data/qbittorrent/config:/config - /mnt/servarr/data/torrents:/data/torrents - ports: - - "8181:8181" - - "40848:40848" - - "40848:40848/udp" + #ports: + # - "8181:8181" + # - "40848:40848" + # - "40848:40848/udp" restart: unless-stopped + network_mode: "service:gluetun" + depends_on: + gluetun: + condition: service_healthy + + + gluetun: + image: qmcgaw/gluetun:latest + cap_add: + - NET_ADMIN + environment: + - VPN_SERVICE_PROVIDER=custom + - VPN_TYPE=wireguard + - WIREGUARD_ENDPOINT_IP=85.209.92.53 + - WIREGUARD_ENDPOINT_PORT=51822 + - WIREGUARD_PUBLIC_KEY=/rw71EjmWXGLftrUp/AgZ9RgKYc/5wh//yFtluq4L2A= + - WIREGUARD_PRIVATE_KEY=wEePWTLpMDYd0Fuqzef40q8ggyActNdt7veVWOaxiV8= + - WIREGUARD_PRESHARED_KEY=0b+TB4RdPWMhcu44/sOd2lJrHNIAheddnE54OqOyrZQ= + - WIREGUARD_ADDRESSES=10.8.0.4/32, fdcc:ad94:bacf:61a4::cafe:4/128 + ports: + - 8181:8181 + - 40848:40848 + - 40848:40848/udp + restart: always \ No newline at end of file diff --git a/servarr/docker-compose.yml b/servarr/docker-compose.yml index fb45aef..23de695 100644 --- a/servarr/docker-compose.yml +++ b/servarr/docker-compose.yml @@ -76,6 +76,7 @@ services: image: ghcr.io/seerr-team/seerr:latest init: true container_name: seerr + user: "1000:1002" environment: - LOG_LEVEL=info - TZ=America/Sao_Paulo @@ -83,7 +84,7 @@ services: ports: - 5055:5055 volumes: - - /home/ccalifice/docker-data/servarr/jellyseer:/app/config + - /home/ccalifice/docker-data/servarr/seer:/app/config healthcheck: test: wget --no-verbose --tries=1 --spider http://localhost:5055/api/v1/status || exit 1 start_period: 20s @@ -92,7 +93,7 @@ services: retries: 3 restart: unless-stopped networks: - - jellyseer + - seer flaresolverr: image: ghcr.io/flaresolverr/flaresolverr:latest @@ -196,4 +197,4 @@ services: # image: mrusse08/soularr:latest networks: - jellyseer: + seer: