Skip to content

Commit

Permalink
Multipane (#32)
Browse files Browse the repository at this point in the history
* Converting to multipane

* Dockerfile file name

* Updated hotspsots/ includes

* Minor updates for multipane, dockerfile hotspot not working

* Fixing hotspot liness

* Updated commands and inline hotspots, Dockerfile is not being picked up by hotspots

* Updating action to create dockerfile

* Added text to include Dockerfile

* Updated wording

* Updated multipane

* Updated multipane

* Updated multipane

* Updated multipane

* Updated arrow to hotspot when telling users to read the guide

* Updated README

* Formatted pom.xml to 90 chars per line

* Parent POM update

* Updated start/pom.xml to match finish/

* Changed wording in readme

* Updated read me and hotspots

* Updated pom and readme

* README and pom update

* Updates to pom and to start pom

* Testing

* Testing

* Testing

* Updated readme based on Rachel's feedback

* Removed testing

* Removed testing

* Updated hotspots

* Updated hyperlinks

* Updated image version, output and made docker stop into a command

* Added hyperlink

* README hotspot changes

* Updated readme

* Added hotspots and updated mvn package command

* Reverted back to parent pom.xml

* README update

* README update

* README update

* README update - removed comment in right panel

* Changed hotspot from properties to @path

* 2nd round

* Updated pom.xml and README

* Removed finish.adoc include from README.adoc

* Trying to test docker commands and endpoint

* Trying to test docker commands and endpoint

* Trying to test docker commands and endpoint

* Trying to test docker commands and endpoint

* Trying to test docker commands and endpoint

* Trying to test docker commands and endpoint

*  Trying to test docker commands

* Trying to add docker commands in travis

* Updating order of dependencies

* JDK 11 pom update

* jdk update

* Updated README

* README update with edit action arrow

* Updated README

* Update README

* Updated README

* Updated README with [hotspot] changes

* Updated README with link in new tab changes

* Updated README with link in new tab changes

* Updated README

* Updated README.adoc

* Updated README.adoc

* Fix the .dockerignore tab name and the hotspot pom.xml is referencing

* Updating phrasing to be more consistent

* Update arrows should not highlight code

* Change the guide attribution to point to master
  • Loading branch information
justineechen authored and gkwan-ibm committed Feb 27, 2019
1 parent a957185 commit 25066b8
Show file tree
Hide file tree
Showing 4 changed files with 198 additions and 134 deletions.
10 changes: 9 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
language: java
services:
- docker
before_script:
- unset _JAVA_OPTIONS
- cd finish
script:
- mvn clean install
- mvn -q clean install
- docker build -t ol-runtime .
- docker run -d --name rest-app -p 9080:9080 -p 9443:9443 -v /home/travis/build/OpenLiberty/guide-docker/finish/target/liberty/wlp/usr/servers:/servers ol-runtime
- sleep 60
- status="$(curl --write-out "%{http_code}\n" --silent --output /dev/null "http://localhost:9080/LibertyProject/System/properties")"; if [ "$status" == "200" ]; then echo ENDPOINT OK; else echo "$status"; echo ENDPOINT NOT OK; exit 1; fi;
- docker stop rest-app
- docker rm rest-app
- serverName=$(target/liberty/wlp/bin/server list | cut -d '.' -f2| tr -d '\n');
- build=$(grep "Open Liberty" target/liberty/wlp/usr/servers/"$serverName"/logs/console.log
| cut -d' ' -f5 | cut -d')' -f1 ); release=$( echo "$build" | cut -d'/' -f1); number=$(
Expand Down
Loading

0 comments on commit 25066b8

Please sign in to comment.