forked from jakobengdahl/java-vtl-tools
-
Notifications
You must be signed in to change notification settings - Fork 1
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 #1 from trygu/develop
Updated java-vtl-tools to support VTL Pogues Connector
- Loading branch information
Showing
6 changed files
with
2,739 additions
and
27 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
FROM openjdk:8-jre-alpine | ||
|
||
ADD target/java-vtl-tools-*SNAPSHOT.jar java-vtl-tools.jar | ||
RUN mkdir -p /src/main/resources | ||
ADD ./src/main/resources/simpsons.xml /src/main/resources | ||
RUN sh -c 'touch /java-vtl-tools.jar' | ||
EXPOSE 8080 | ||
ENTRYPOINT ["java", "-Xmx300m", "-Djava.security.egd=file:/dev/./urandom","-jar","/java-vtl-tools.jar"] |
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,9 +1,17 @@ | ||
# java-vtl-tools | ||
A collection of tools for Java VTL. | ||
|
||
## Testing the VTL-Pogues-Connector | ||
|
||
* Make sure the simpson.xml (in the resource directory) is available for the connector. | ||
|
||
## Build and run as docker image | ||
Run "mvn clean install" to build the application itself. | ||
|
||
Build Docker image: docker build -t java-vtl-tools:{{tag}} | ||
Build Docker image: docker build . -t i3sessnet/java-vtl-tools:latest | ||
|
||
Run the application: docker run -p 8080:8080 i3sessnet/java-vtl-tools:latest | ||
|
||
## Access the demo-application: | ||
|
||
Run the application: docker run java-vtl-tools:{{tag}} | ||
After starting the application/container it can be accessed from [http://localhost:8080/demo/index.html#](http://localhost:8080/demo/index.html#) |
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
Oops, something went wrong.