-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #317 from adorsys/datasafe_frontend_update
frontend update
- Loading branch information
Showing
36 changed files
with
1,511 additions
and
1,017 deletions.
There are no files selected for viewing
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
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,4 @@ | ||
FROM openjdk:8-jre-alpine | ||
FROM ibm-semeru-runtimes:open-21-jre | ||
|
||
ARG JAR_FILE | ||
ENV JAR_FILE ${JAR_FILE} | ||
|
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,31 @@ | ||
services: | ||
datasafe: | ||
build: | ||
args: | ||
JAR_FILE: "datasafe-rest-impl.jar" | ||
# image: adorsys/datasafe | ||
environment: | ||
EXPOSE_API_CREDS: true | ||
DEFAULT_USER: username | ||
DEFAULT_PASSWORD: password | ||
USE_FILESYSTEM: file:///usr/app/ROOT_BUCKET | ||
ports: | ||
- 8080:8080 | ||
volumes: | ||
- "./ROOT_BUCKET:/usr/app/ROOT_BUCKET" | ||
db: | ||
image: mysql:5.7 | ||
restart: always | ||
environment: | ||
MYSQL_DATABASE: 'test_db' | ||
MYSQL_USER: 'test' | ||
MYSQL_PASSWORD: 'test' | ||
MYSQL_ROOT_PASSWORD: 'password' | ||
ports: | ||
- '3306:3306' | ||
expose: | ||
- '3306' | ||
volumes: | ||
- my-db:/var/lib/mysql | ||
volumes: | ||
my-db: |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.