Hi, in docs and in config sample you have provided connection string for SQLite:
connection_string = sqlite+aiosqlite:///var/lib/meshview/packets.db
There is small typo for Docker config, extra slash needs to be added, without it docker exits with error. Proper path:
connection_string = sqlite+aiosqlite:////var/lib/meshview/packets.db
Hi, in docs and in config sample you have provided connection string for SQLite:
connection_string = sqlite+aiosqlite:///var/lib/meshview/packets.db
There is small typo for Docker config, extra slash needs to be added, without it docker exits with error. Proper path:
connection_string = sqlite+aiosqlite:////var/lib/meshview/packets.db