Hi
I was using the docker image “image: triblercore/triblercore:latest” but the version currently seems to be stuck at 7.14.
I wanted to test the new web UI in version 8.x.
I have configured Tribler as follows …
image: ghcr.io/tribler/tribler:latest
network_mode: "host"
volumes:
- /var/tribler-ui/.tribler:/home/user/.Tribler:rw
- /var/tribler-ui/download:/home/user/Downloads/:rw
environment:
CORE_API_PORT: 8085
CORE_API_KEY: MY_KEY
I’m using iptables with default policy DROP.
I’d like to open only the necessary ports in iptables on the one hand, and on the other hand remove the network_mode: “host” to transmit only the necessary ports from docker to the host as well.
I see in “configuration.json” that ipv8 uses ports 8090 and 8091. I understand that bittorrent uses ports 6881 to 6889. And that all these ports use TCP and UDP.
Is this correct or will bittorrent assign ports dynamically in unpredictable ranges please?
Are there any other ports specific to Tribler?
Is it realistic to consider both a strict iptables configuration and a docker-compose configuration of the form …
ports:
- "127.0.0.1:8085:8085"
- ...
Thanks in advance for your help