https://github.com/handcraftedbits/docker-pgmodeler-builder
A Docker container that allows you to build pgModeler with one simple command
https://github.com/handcraftedbits/docker-pgmodeler-builder
Last synced: about 1 year ago
JSON representation
A Docker container that allows you to build pgModeler with one simple command
- Host: GitHub
- URL: https://github.com/handcraftedbits/docker-pgmodeler-builder
- Owner: handcraftedbits
- License: apache-2.0
- Created: 2019-03-19T01:47:57.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-03-24T16:35:10.000Z (over 6 years ago)
- Last Synced: 2025-04-20T01:33:05.868Z (about 1 year ago)
- Language: Shell
- Size: 6.84 KB
- Stars: 48
- Watchers: 5
- Forks: 17
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pgModeler Builder [](https://hub.docker.com/r/handcraftedbits/pgmodeler-builder)
A [Docker](https://www.docker.com) container that allows you to build [pgModeler](https://pgmodeler.io/) with one
simple command.
# Features
This container currently produces binaries for Windows x86_64 only. Other platforms are forthcoming.
# Usage
Simply run the `handcraftedbits/pgmodeler-builder` image, specifying an output volume, mapped to the container
directory `/opt/pgmodeler` (where binaries will be saved) and the version to build (corresponding to a valid tag in the
[pgModeler Git repository](https://github.com/pgmodeler/pgmodeler) repository). For example, to build pgModeler
version `0.9.1` and store the result in `/mnt/windows/pgmodeler`:
```bash
docker run -v /mnt/windows/pgmodeler:/opt/pgmodeler handcraftedbits/pgmodeler-builder v0.9.1
```
If you run the command without specifying a version the container script will list all valid pgModeler versions.
Simply run the `pgmodeler.exe` executable stored in your output directory. That's it!