I’m having an issue with the icons using the docker version.
Here is my docker-compose file.
version: '3.1'
services:
teamspeak:
image: teamspeak
restart: always
ports:
- 9988:9987/udp
- 10012:10011
- 30034:30033
volumes:
- ./teamspeak3:/var/ts3server/
environment:
TS3SERVER_DB_PLUGIN: ts3db_mariadb
TS3SERVER_DB_SQLCREATEPATH: create_mariadb
TS3SERVER_DB_HOST: db
TS3SERVER_DB_USER: root
TS3SERVER_DB_PASSWORD: password
TS3SERVER_DB_NAME: teamspeak
TS3SERVER_DB_WAITUNTILREADY: 30
TS3SERVER_LICENSE: accept
db:
image: mariadb
restart: always
environment:
MYSQL_ROOT_PASSWORD: password
MYSQL_DATABASE: teamspeak
volumes:
- ./db:/var/lib/mysql
When I go to upload icons, it seems that it works. I get no errors or any message in the server logs. So I close the icons dialogue box, then go back to it and the icons are not there.
The icons look like they are uploaded to the server in /files/virtualserver_1/internal/icons
but they are all 0kb.
Has anyone run across this before?