Skip to content

Commit f3ab2d2

Browse files
authored
Update README.md
1 parent a813810 commit f3ab2d2

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

README.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
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.
44

5-
[![Build Status](https://travis-ci.org/common-workflow-language/cwlviewer.svg?branch=master)](https://travis-ci.org/common-workflow-language/cwlviewer) [![Gitter](https://img.shields.io/gitter/room/gitterHQ/gitter.svg)](https://gitter.im/common-workflow-language/common-workflow-language?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
5+
[![Build Status](https://travis-ci.org/common-workflow-language/cwlviewer.svg?branch=master)](https://travis-ci.org/common-workflow-language/cwlviewer) [![Gitter](https://img.shields.io/gitter/room/gitterHQ/gitter.svg)](https://gitter.im/common-workflow-language/common-workflow-language?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [![](https://images.microbadger.com/badges/image/commonworkflowlanguage/cwlviewer.svg)](https://microbadger.com/images/commonworkflowlanguage/cwlviewer "Get your own image badge on microbadger.com") [![Docker image commonworkflowlanguage/cwlviewer](https://images.microbadger.com/badges/version/commonworkflowlanguage/cwlviewer.svg)](https://hub.docker.com/r/commonworkflowlanguage/cwlviewer/ "Get your own version badge on microbadger.com")
66

77

88

@@ -36,13 +36,18 @@ If you change the source code, re-build with `docker-compose build`.
3636

3737
See the [docker-compose.yml](docker-compose.yml) file for details.
3838

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.
4041

41-
docker build -t cwlviewer .
4242
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
4444
docker logs -f cwlviewer
4545

46+
If you have modified the source code, then you may want to build the docker image locally first:
47+
48+
docker build -t commonworkflowlanguage/cwlviewer .
49+
50+
4651
## Requirement: MongoDB
4752

4853
You will need to have [MongoDB](https://www.mongodb.com/) running,

0 commit comments

Comments
 (0)