Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sottey/drawdb-docker
Dockerfile and compose.yaml for the amazing drawdb project
https://github.com/sottey/drawdb-docker
Last synced: about 4 hours ago
JSON representation
Dockerfile and compose.yaml for the amazing drawdb project
- Host: GitHub
- URL: https://github.com/sottey/drawdb-docker
- Owner: sottey
- License: mit
- Created: 2024-04-10T02:56:59.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-04-10T05:47:51.000Z (7 months ago)
- Last Synced: 2024-04-11T05:31:55.923Z (7 months ago)
- Size: 9.77 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# drawdb-docker
Dockerfile and compose.yaml for the amazing [drawdb](https://github.com/drawdb-io/drawdb) project## About
I wanted to run the incredible DrawDB locally, but I wanted it in a docker container. This is a simple docker file as well as a docker compose compose.yaml. Keep it simple.## Usage
* Docker Build:
To build the docker image using the docker file:
- Download the dockerfile and put it in a directory
- cd to that directory
- Build the image:
```
docker build -t yourname/yourimagename .
```
- Run the image:
```
docker run -d -p 8080:5173 yourname/yourimagename
```* Docker Compose:
To just run using the precreated image:
- Download the compose.yaml file
- Run:
```
docker-compose up
```