It seems like the MariaDB database isn't saved anymore in /var/ts3server/ in docker-compose and just temporarily created.
Therefore after every docker-compose down the complete database is deleted and newly created at the next startup.
I can fix that with creating a new volume in db:
volumes:
- ./db:/var/lib/mysql
But I don't know if that's the way you want it to be handled.
It seems like the MariaDB database isn't saved anymore in /var/ts3server/ in docker-compose and just temporarily created. Therefore after every
docker-compose down
the complete database is deleted and newly created at the next startup.I can fix that with creating a new volume in db:
But I don't know if that's the way you want it to be handled.