comparison docker/README.md @ 1982:a7e47a9d890b

Fix mount path in README Should have been done in rev. 6f2219d942d6, which changed the path in the Dockerfile.
author Tom Gottfried <tom@intevation.de>
date Wed, 23 Jan 2019 16:18:36 +0100
parents ce24990b3d5c
children 70471052f6b0
comparison
equal deleted inserted replaced
1981:e89368aec538 1982:a7e47a9d890b
84 docker build -t gemma_spa -f docker/Dockerfile.spa . 84 docker build -t gemma_spa -f docker/Dockerfile.spa .
85 ``` 85 ```
86 86
87 - Get a running instance with e.g.: 87 - Get a running instance with e.g.:
88 ``` 88 ```
89 docker run --name gemma_spa -v $PWD/client:/opt/gemma_spa -d -p 8290:8080 \ 89 docker run --name gemma_spa -v $PWD/client:/opt/gemma/client -d -p 8290:8080 \
90 --network gemma gemma_spa 90 --network gemma gemma_spa
91 ``` 91 ```
92 92
93 Now you should be able to use the application in your browser by going to 93 Now you should be able to use the application in your browser by going to
94 `http://HOST:8290`, with HOST being the hostname of your docker host. 94 `http://HOST:8290`, with HOST being the hostname of your docker host.