Skip to Content
Full Stack Development with JHipster
book

Full Stack Development with JHipster

by Deepu K Sasidharan, Sendil Kumar N
March 2018
Intermediate to advanced content levelIntermediate to advanced
380 pages
9h 23m
English
Packt Publishing
Content preview from Full Stack Development with JHipster

Building and deploying using Docker

Let's use a Gradle task to build our docker image.

Use the ./gradlew tasks command to list all available tasks.
  1. In your Terminal, go to the project root folder and execute; ./gradlew bootRepackage -Pprod buildDocker:
    • bootRepackage: Builds an executable archive (WAR) file for the application
    • -Pprod: Specifies the profile to use
    • buildDocker: Builds a docker image based on the Dockerfile present in the src/main/docker folder
If you are using JHipster Version 5 or above, use bootWar instead of the bootRepackage command in Gradle.

2. Once the task is completed successfully, we can deploy our app by running:

> docker-compose -f src/main/docker/app.yml up

This will also start the MySQL DB if you haven't started ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Full Stack Development with JHipster - Second Edition

Full Stack Development with JHipster - Second Edition

Deepu K Sasidharan, Sendil Kumar Nellaiyapen
Jasmine Cookbook

Jasmine Cookbook

Munish Kumar

Publisher Resources

ISBN: 9781788476317Supplemental Content