Inspecting SQLite database

Hi, I’m happy to be apart of the Fly community. I’ve set up a container with an SQLite volume, and I’m wondering ways to view the data in the volume. I attempted to use fly ssh console -a my-app and thought I could utilize the SQLite CLI, but I couldn’t find a way to install it using apt.

I was wondering if anyone has a reliable method to inspect their SQLite database. Any help here is appreciated!

Try:

apt update
apt install -y sqlite3

Nice, that worked. Thanks!

From How To to Questions / Help