March 2018
Intermediate to advanced
380 pages
9h 23m
English
You can also start JHipster Registry from the provided Docker image. The application that we generated already has the docker-compose file required.
For example, in the gateway application we created, look for the docker-compose file under src/main/docker/jhipster-registry.yml.
We can start the JHipster Registry by typing the following command in the terminal:
> cd gateway> docker-compose -f src/main/docker/jhipster-registry.yml up
The docker compose file (src/main/docker/jhipster-registry.yml) contains:
version: 2services: jhipster-registry: image: jhipster/jhipster-registry:v3.2.3 volumes: - ./central-server-config:/central-config environment: - SPRING_PROFILES_ACTIVE=dev - SECURITY_USER_PASSWORD=admin - JHIPSTER_REGISTRY_PASSWORD=admin ...