xinsodev/drawdb
Free, simple, and intuitive database design tool and SQL generator.
10K+
DrawDB is a robust and user-friendly database entity relationship (DBER) editor right in your browser. Build diagrams with a few clicks, export sql scripts, customize your editor, and more without creating an account. See the full set of features here.
drawdb
instance$ docker run --name some-drawdb -p 3000:80 -d xinsodev/drawdb:tag
... where some-drawdb
is the name you want to assign to your container, tag
is the tag specifying the DrawDB version you want.
Example docker-compose.yml
for drawdb
:
services:
drawdb:
image: xinsodev/drawdb
restart: always
ports:
- 3000:80
Run docker-compose -f docker-compose.yml up
, wait for it to initialize completely, and visit http://localhost:3000
(as appropriate).
docker pull xinsodev/drawdb