Commit 8b798b9fbad68c3073019e8c64047ea064c18d85
1 parent
19c6be1e
docker repository
Showing
2 changed files
with
13 additions
and
4 deletions
README.md
... | ... | @@ -4,7 +4,14 @@ See [meertensinstituut.github.io/mtas/](https://meertensinstituut.github.io/mtas |
4 | 4 | |
5 | 5 | --- |
6 | 6 | |
7 | -A Docker image providing a Solr based demonstration scenario with indexing and querying of some sample documents is available. To build and run | |
7 | +A Docker image providing a Solr based demonstration scenario with indexing and querying of some sample documents is available. To pull and run | |
8 | + | |
9 | +```console | |
10 | +docker pull meertensinstituut/mtas | |
11 | +docker run -t -i -p 8080:80 --name mtas meertensinstituut/mtas | |
12 | +``` | |
13 | + | |
14 | +Or to build and run | |
8 | 15 | |
9 | 16 | ```console |
10 | 17 | docker build -t mtas https://raw.githubusercontent.com/meertensinstituut/mtas/master/docker/Dockerfile |
... | ... |
src/site/markdown/installation_docker.md.vm
... | ... | @@ -3,15 +3,17 @@ |
3 | 3 | A [Dockerfile](https://www.docker.com/) is available to get started quickly with |
4 | 4 | Mtas on a Solr based installation. |
5 | 5 | |
6 | -To build the image | |
6 | +To pull and run the image | |
7 | 7 | |
8 | 8 | ```console |
9 | -docker build -t mtas https://raw.githubusercontent.com/meertensinstituut/mtas/master/docker/Dockerfile | |
9 | +docker pull meertensinstituut/mtas | |
10 | +docker run -t -i -p 8080:80 --name mtas meertensinstituut/mtas | |
10 | 11 | ``` |
11 | 12 | |
12 | -And to run the created image | |
13 | +Or to build and run | |
13 | 14 | |
14 | 15 | ```console |
16 | +docker build -t mtas https://raw.githubusercontent.com/meertensinstituut/mtas/master/docker/Dockerfile | |
15 | 17 | docker run -t -i -p 8080:80 --name mtas mtas |
16 | 18 | ``` |
17 | 19 | |
... | ... |