Skip to content

Commit

Permalink
clean up, edit readme
Browse files Browse the repository at this point in the history
  • Loading branch information
karmaking committed Jul 25, 2024
1 parent cb1fe82 commit d4aed45
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 11 deletions.
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,3 @@ build/
/src/main/resources/application-local.properties
/src/main/resources/application-remote.properties
/src/main/resources/cert/

.application.env
6 changes: 2 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@ RUN MAVEN_OPTS="-Xmx3G -Xss2m" mvn clean package
FROM openjdk:17-jdk-alpine

COPY --from=maven target/obp-hola-app-*-SNAPSHOT.jar obp-hola.jar
COPY application.properties application.properties
#COPY --chmod=777 entrypoint.sh entrypoint.sh
#RUN chmod +x entrypoint.sh
COPY application.properties.docker application.properties
EXPOSE 8087
ENTRYPOINT ["java","-jar","/obp-hola.jar"]
#ENTRYPOINT ["/entrypoint.sh"]

6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,12 @@ Create `application.properties` according to `application.properties.example`:

While the app is running, point your browser to the configured port on localhost (e.g. `http://localhost:8087`) to start the consent flow.

## Build and Run in Docker/Kubernetes

The included Dockerfile will build Hola using Maven and create an image.

Please see `application.properties.docker` for all vars to pass to the container for configuration.

## Screenshots of the app

### Landing page
Expand Down
File renamed without changes.
5 changes: 0 additions & 5 deletions entrypoint.sh

This file was deleted.

0 comments on commit d4aed45

Please sign in to comment.