Skip to content

Commit

Permalink
Does docker run -p work on travis?
Browse files Browse the repository at this point in the history
  • Loading branch information
stain committed Sep 20, 2015
1 parent fe4f5f3 commit 6132608
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ script:
- docker run jena riot --version # Does it run at all?
- docker run --volume /tmp:/rdf jena riot example.ttl > /tmp/example.nq
- grep --quiet example.com /tmp/example.nq
- docker run --name fuseki -p 3030:3030 -d jena-fuseki
- wait 4; curl http://localhost:3030/ > /tmp/index.html # does it start?
- docker run --name fuseki -p 127.0.0.1:3030:3030 -d jena-fuseki
- wait 4; curl http://127.0.0.1:3030/ > /tmp/index.html # does it start?
- grep --quiet Fuseki /tmp/index.html

0 comments on commit 6132608

Please sign in to comment.