You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9-4Lines changed: 9 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
This is a work-in-progress [Spring Boot](http://projects.spring.io/spring-boot/) MVC application which fetches [Common Workflow Language](http://www.commonwl.org/) files from a Github repository and creates a page for it detailing the main workflow and its inputs, outputs and steps.
[](https://travis-ci.org/common-workflow-language/cwlviewer)[](https://gitter.im/common-workflow-language/common-workflow-language?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)[](https://microbadger.com/images/commonworkflowlanguage/cwlviewer"Get your own image badge on microbadger.com")[](https://hub.docker.com/r/commonworkflowlanguage/cwlviewer/"Get your own version badge on microbadger.com")
6
6
7
7
8
8
@@ -36,13 +36,18 @@ If you change the source code, re-build with `docker-compose build`.
36
36
37
37
See the [docker-compose.yml](docker-compose.yml) file for details.
38
38
39
-
If you don't want to use Docker Compose, you can do the equivalent manually with `docker`:
39
+
If you don't want to use Docker Compose, you can do the equivalent manually with `docker`
40
+
and the [commonworkflowlanguage/cwlviewer](https://hub.docker.com/r/commonworkflowlanguage/cwlviewer/builds/) docker image.
40
41
41
-
docker build -t cwlviewer .
42
42
docker run --name cwlviewer-mongo -p 27017:27017 -d mongo
43
-
docker run --name cwlviewer -p 8080:8080 --link cwlviewer-mongo:mongo -d cwlviewer
43
+
docker run --name cwlviewer -p 8080:8080 --link cwlviewer-mongo:mongo -d commonworkflowlanguage/cwlviewer
44
44
docker logs -f cwlviewer
45
45
46
+
If you have modified the source code, then you may want to build the docker image locally first:
0 commit comments