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/DockerfileBuild the Docker images:
docker build -t jhipster-generator:latest .Make a folder where you want to generate the Service:
mkdir service
cd serviceRun the generator from image to generate service:
docker run -it --rm -v $PWD:/home/jhipster/app jhipster-generatorRun 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/bashThe code is available under the GNU Affero General Public License v3.0 license.