Mysql database browser based on Sandman
326
This project was built to be a database browser for mysql using Sandman. Specifically this was created to have a clean interface into running docker mysql database instances.
$ docker run -e DATABASE_URL="mysql://user:pass@hostname/dbname" -p 5000:5000 -t sherzberg/sandmanctl-mysql
OR use docker links!
$ docker run -e MYSQL_DATABASE=dbname -e MYSQL_USER=user -e MYSQL_PASSWORD=pass -name db -d orchardup/mysql
$ docker run -p 5000:5000 -link db:db -t sherzberg/sandmanctl-mysql
NOTE: Using docker links, the link alias is assumed to be db.
NOTE: This docker container relies on environment variables from the db container. The example orchardup/mysql container uses environment variables to setup the database, user, and password.
Now visit http://localhost:5000/admin in your browser to view the database with a nice interface.
Content type
Image
Digest
sha256:39328e2d4…
Size
120.1 MB
Last updated
almost 11 years ago
docker pull sherzberg/sandmanctl-mysql