You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
The templates are either gone after recreating the continer (e.g. with docker compose down and docker compose up) or the default templates default and audio only are added even though they have been deleted.
After a bit of searching I found that the templates are stored in the /config directory. So I added it as a volume to the docker compose file but the local.db gets either completely overwritten after the container is recreated or the default templates are added again.
Additional context
It would be nice to already have the /config directory in the docker compose example instead of having to "reverse engineer" where things are stored.
The text was updated successfully, but these errors were encountered:
If the dockerfile entrypoint is not overwritten and the /config volume set, the local.db will not be recreated.
As for the default templates: they're re-added since if the container is recreated or restarted the application lose its "state".
The docker-compose.yml example has been updated in 98f0ea3.
Version running
latest docker build
Describe the bug
The templates are either gone after recreating the continer (e.g. with docker compose down and docker compose up) or the default templates
default
andaudio only
are added even though they have been deleted.After a bit of searching I found that the templates are stored in the
/config
directory. So I added it as a volume to the docker compose file but thelocal.db
gets either completely overwritten after the container is recreated or the default templates are added again.Additional context
It would be nice to already have the
/config
directory in the docker compose example instead of having to "reverse engineer" where things are stored.The text was updated successfully, but these errors were encountered: