TeamSpeak-Systems / teamspeak-linux-docker-images

docker build files for TeamSpeak servers
Other
114 stars 52 forks source link

IP Addresses for ts3server.ini are set to 0.0.0.0 by default -> No IPv6 #36

Closed Xyaren closed 4 years ago

Xyaren commented 4 years ago

This prevents ipv6 working wihtout configuration. Instead should just be blank.

I tricked the entryscript by using:

   environment:
      TS3SERVER_LICENSE: accept
      TS3SERVER_VOICE_IP: "\n"
      TS3SERVER_QUERY_SSH_IP: "\n"
      TS3SERVER_FILETRANSFER_IP: "\n"
      TS3SERVER_QUERY_IP: "\n"

in my docker-compose. This basically leaves the config entry empty and will result in a binding for 0.0.0.0 and [::]

muenchow commented 4 years ago

the 3.10.0 was released, this should fix your problem.

Xyaren commented 4 years ago

Thanks ! Can comfirm the update fixed the problem.