-
-
Notifications
You must be signed in to change notification settings - Fork 654
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
92 additions
and
148 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,7 +43,7 @@ services: | |
- JHIPSTER_SLEEP=30 # gives time for other services to boot before the application | ||
- SPRING_SECURITY_USER_PASSWORD=admin | ||
# The token should have the same value than the one declared in you Spring configuration under the jhipster.security.authentication.jwt.base64-secret configuration's entry | ||
- JHIPSTER_SECURITY_AUTHENTICATION_JWT_BASE64_SECRET=c9d37cefc48581919939d587c750ea215020765b | ||
- JHIPSTER_SECURITY_AUTHENTICATION_JWT_BASE64_SECRET=NmQ3NTY1NjhlZGY2NmEzNzUxMjFkZDVmNTA3YjRiNWIxMzM2ZGRiNDNlYjFkMDc2YzdlYTgzYjVkNTNlZGU0NTdiNDg5OTUyNTZjYmNiYjlkMWNjNjE5MTE2NjVhZjM2MmZkYTdiYjRkNGZiMDU5MzhmMDIzYTE4ZjQ3ZTVmMTU= | ||
- EUREKA_CLIENT_SERVICE_URL_DEFAULTZONE=http://admin:[email protected]:8761/eureka/ | ||
- LOGGING_FILE_NAME=/tmp/jhipster-control-center.log | ||
# If you want to expose these ports outside your dev PC, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# This configuration is intended for development purpose, it's **your** responsibility to harden it for production | ||
version: '3.8' | ||
services: | ||
jhipster-registry: | ||
image: ghcr.io/jhipster/jhipster-registry:main | ||
volumes: | ||
- ./central-server-config:/central-config | ||
# When run with the "dev" Spring profile, the JHipster Registry will | ||
# read the config from the local filesystem (central-server-config directory) | ||
# When run with the "prod" Spring profile, it will read the configuration from a Git repository | ||
# See https://www.jhipster.tech/jhipster-registry/#spring-cloud-config | ||
environment: | ||
- _JAVA_OPTIONS=-Xmx512m -Xms256m | ||
- SPRING_PROFILES_ACTIVE=dev,api-docs | ||
- SPRING_SECURITY_USER_PASSWORD=admin | ||
- JHIPSTER_REGISTRY_PASSWORD=admin | ||
- SPRING_CLOUD_CONFIG_SERVER_COMPOSITE_0_TYPE=native | ||
- SPRING_CLOUD_CONFIG_SERVER_COMPOSITE_0_SEARCH_LOCATIONS=file:./central-config/localhost-config/ | ||
# - SPRING_CLOUD_CONFIG_SERVER_COMPOSITE_0_TYPE=git | ||
# - SPRING_CLOUD_CONFIG_SERVER_COMPOSITE_0_URI=https://github.com/jhipster/jhipster-registry/ | ||
# - SPRING_CLOUD_CONFIG_SERVER_COMPOSITE_0_SEARCH_PATHS=central-config | ||
# If you want to expose these ports outside your dev PC, | ||
# remove the "127.0.0.1:" prefix | ||
ports: | ||
- 127.0.0.1:8761:8761 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
#!/bin/sh | ||
|
||
echo "The JHipster Registry will start in ${JHIPSTER_SLEEP}s..." && sleep ${JHIPSTER_SLEEP} | ||
exec java ${JAVA_OPTS} -noverify -XX:+AlwaysPreTouch -Djava.security.egd=file:/dev/./urandom -cp /app/resources/:/app/classes/:/app/libs/* "tech.jhipster.registry.JHipsterRegistryApp" "$@" | ||
echo "JHipster Registry will start in ${JHIPSTER_SLEEP}s..." && sleep ${JHIPSTER_SLEEP} | ||
set -x | ||
exec java ${JAVA_OPTS} -noverify -XX:+AlwaysPreTouch -Djava.security.egd=file:/dev/./urandom -cp /app/resources/:/app/classes/:/app/libs/* "tech.jhipster.registry.JHipsterRegistryApp" "$@" |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters