web interface to administrate your SQLite database
10K+
SQLite database web administration tool running on Docker
Read more on sqlite-web at charlesleifer.com.
Let say your project uses a SQLite database file ./my_database.db, run the docker container with:
docker run -d -p 8080:8080 -v $(pwd)/my_database.db:/db/my_database.db tomdesinto/sqliteweb my_database.db
sqliteweb:
image: tomdesinto/sqliteweb
ports:
- 8080:8080
volumes:
- ./my_database.db:/db/my_database.db
command: my_database.db
git clone https://github.com/thomasleveil/docker-sqliteweb.git
docker build -t sqliteweb docker-sqliteweb
Then test it:
docker run --rm sqliteweb --help
Content type
Image
Digest
Size
350.4 MB
Last updated
over 7 years ago
docker pull tomdesinto/sqliteweb