I’m running my TeamSpeak inside a docker container and since a few days, my server is not able to validate the myTeamSpeak ID. I can ping ts3services.teamspeak.com without any issues from within the docker container.
Latest server log (after server reboot):
/var/ts3server/logs # cat ts3server_2024-12-09__16_16_04.579890_0.log
2024-12-09 16:16:04.579930|INFO |ServerLibPriv | |TeamSpeak 3 Server 3.13.7 (2022-06-20 12:21:53)
2024-12-09 16:16:04.580105|INFO |ServerLibPriv | |SystemInformation: Linux 6.1.0-28-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.119-1 (2024-11-22) x86_64 Binary: 64bit
2024-12-09 16:16:04.580162|INFO |ServerLibPriv | |Using hardware aes
2024-12-09 16:16:04.585079|INFO |DatabaseQuery | |dbPlugin name: SQLite3 plugin, Version 3, (c)TeamSpeak Systems GmbH
2024-12-09 16:16:04.585316|INFO |DatabaseQuery | |dbPlugin version: 3.11.1
2024-12-09 16:16:04.591036|INFO |DatabaseQuery | |checking database integrity (may take a while)
2024-12-09 16:16:04.994508|INFO |Accounting | |Licensing Information
2024-12-09 16:16:05.001876|INFO |Accounting | |type : Non-Profit License
2024-12-09 16:16:05.002090|INFO |Accounting | |starting date : Sun Jun 30 00:00:00 2024
2024-12-09 16:16:05.002180|INFO |Accounting | |ending date : Wed Feb 5 00:00:00 2025
2024-12-09 16:16:05.002265|INFO |Accounting | |max virtualservers: 10
2024-12-09 16:16:05.002364|INFO |Accounting | |max slots : 512
2024-12-09 16:16:06.594834|INFO | | |Puzzle precompute time: 1360
2024-12-09 16:16:06.596533|INFO |FileManager | |listening on 0.0.0.0:30033, [::]:30033
2024-12-09 16:16:06.599645|INFO |Query | |Using a query thread pool size of 2
2024-12-09 16:16:06.723994|INFO |Query | |listening for query on 0.0.0.0:10011, [::]:10011
2024-12-09 16:16:06.724559|INFO |CIDRManager | |updated query_ip_allowlist ips: 127.0.0.1/32, ::1/128,
2024-12-09 16:16:06.744442|INFO |ServerLibPriv | |failed to download revocation list - count: 1
2024-12-09 16:16:08.000088|ERROR | | |TS3ANetwork::Send failed error: 111
2024-12-09 16:16:10.000136|ERROR | | |TS3ANetwork::Send failed error: 111
Current docker-compose.yml file:
version: '3.1'
services:
teamspeak:
container_name: teamspeak
image: teamspeak
restart: always
ports:
- 1337:1337/udp
- 9987:9987/udp
- 10011:10011
- 10022:10022
- 10080:10080
- 30033:30033
volumes:
- .:/var/ts3server
environment:
TS3SERVER_DB_PLUGIN: ts3db_sqlite3
TS3SERVER_DB_SQLCREATEPATH: create_sqlite
TS3SERVER_DB_HOST: localhost
TS3SERVER_DB_USER: root
TS3SERVER_DB_PASSWORD: ts3_sqlite
TS3SERVER_DB_NAME: teamspeak
TS3SERVER_DB_WAITUNTILREADY: 30
TS3SERVER_LICENSE: accept
Is there anything I can do? I could not find any solution in the threads with the same issue.