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
I've mounted a murmur sqlite database into the container and am running docker-compose run grumble --import-murmurdb /import/mumble.db --cleanup to import it. When I do that, I get the following error message:
I've managed to get this to somewhat work outside of docker by adding _ "github.com/mattn/go-sqlite3" as a dependency and changing db, err := sql.Open("sqlite", filename) to db, err := sql.Open("sqlite3", filename) and after bypassing the cleanup check (which fails due to the directories not existing) the import seems to work but the server is now stuck in a reboot loop.
I've mounted a murmur sqlite database into the container and am running
docker-compose run grumble --import-murmurdb /import/mumble.db --cleanup
to import it. When I do that, I get the following error message:Seems like whatever dependency is required for sqlite is missing in the container.
The text was updated successfully, but these errors were encountered: