Packaged jhipster-generators ready to ship and sail in Docker containers
Download the Dockerfile:
mkdir docker
cd docker
wget https://github.com/jhipster-projects/jhipster-generators/raw/main/Dockerfile
Build the Docker images:
docker build -t jhipster-generator:latest .
Make a folder where you want to generate the Service:
mkdir service
cd service
Run the generator from image to generate service:
docker run -it --rm -v $PWD:/home/jhipster/app jhipster-generator
Run and attach interactive shell to the generator docker container to work from inside the running container:
docker run -it --rm -v $PWD:/home/jhipster/app jhipster-generator /bin/bash
The code is available under the GNU Affero General Public License v3.0 license.