Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thomasleveil/docker-sqliteweb
SQLite database web administration tool running on Docker
https://github.com/thomasleveil/docker-sqliteweb
admin-ui docker docker-compose docker-image sqlite web-interface
Last synced: about 1 month ago
JSON representation
SQLite database web administration tool running on Docker
- Host: GitHub
- URL: https://github.com/thomasleveil/docker-sqliteweb
- Owner: thomasleveil
- Created: 2017-09-20T22:37:22.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-09-20T23:11:35.000Z (over 7 years ago)
- Last Synced: 2024-11-04T05:33:54.174Z (2 months ago)
- Topics: admin-ui, docker, docker-compose, docker-image, sqlite, web-interface
- Homepage: https://hub.docker.com/r/tomdesinto/sqliteweb/
- Size: 2.93 KB
- Stars: 15
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-starred - thomasleveil/docker-sqliteweb - SQLite database web administration tool running on Docker (docker)
README
# docker-sqliteweb
SQLite database web administration tool running on DockerRead more on sqlite-web at [charlesleifer.com](http://charlesleifer.com/blog/web-based-sqlite-database-browser-using-flask/).
## Usage
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
## docker-compose example
```
sqliteweb:
image: tomdesinto/sqliteweb
ports:
- 8080:8080
volumes:
- ./my_database.db:/db/my_database.db
command: my_database.db
```----
## Build the docker image yourself
git clone https://github.com/thomasleveil/docker-sqliteweb.git
docker build -t sqliteweb docker-sqliteweb
Then test it:docker run --rm sqliteweb --help