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
My current workaround is to run it in host network mode, and change the listen addr so that only my Traefik reverse proxy in container can access.
services:
rqbit:
image: ikatson/rqbitnetwork_mode: host# ports:# - 3030:3030 # HTTP API port# - 4240:4240 # TCP BitTorrent portenvironment:
# Replace this with your LAN hostname or IP, resolvable from other devices in your LAN# RQBIT_UPNP_SERVER_ENABLE: "true"# RQBIT_UPNP_SERVER_FRIENDLY_NAME: rqbit-docker# Replace this if you want to change the HTTP/Web UI portRQBIT_HTTP_API_LISTEN_ADDR: 172.17.0.1:3030volumes:
- db:/home/rqbit/db
- cache:/home/rqbit/cache# Replace /tmp/scratch with your downloads folder
- /xxx:/home/rqbit/downloadslabels:
- "traefik.enable=true"
- "traefik.http.routers.rqbit.rule=Host(`rqbit.xxx`)"
- "traefik.http.routers.rqbit.tls=true"
- "traefik.http.services.rqbit.loadbalancer.server.port=3030"
- "traefik.docker.network=traefik"# networks:# - traefik# networks:# traefik:# external: truevolumes:
db: {}cache: {}
I want to use port mapping to expose DHT in Docker
The text was updated successfully, but these errors were encountered: