Does the TS6 docker come with a database or do you have to set it up in the contain yourself, and what are the pros of setting up a database for your server? I’m using Casaos to manage my docker images. I used this docker compose to setup my TS6 server:
In both cases you are using a database, just that SQLite is a file one, and MariaDB is a network one. MariaDB would be a better fit in case of multiple servers trying to access a single database at once. But it comes with additional resource usage and requires maintenance. For a simple use case like self-hosting a TS server, SQLite will be enough.
So what you’re saying is the basic docker compose I listed uses a database already?
Sorry for the dumb questions! I’m not very smart about this stuff. X3