Mercurial > lada > lada-client
comparison Dockerfile @ 986:c4c95d340ebe
Dockerfile: improve comments.
author | Tom Gottfried <tom@intevation.de> |
---|---|
date | Fri, 04 Dec 2015 16:24:27 +0100 |
parents | 1856b6b3b8d4 |
children | 418e25969a16 |
comparison
equal
deleted
inserted
replaced
974:ea477f62a667 | 986:c4c95d340ebe |
---|---|
1 # | 1 # |
2 # Build and run LADA-client | 2 # Build and run LADA-client |
3 # | 3 # |
4 # Build with e.g. `docker build --force-rm=true -t koala/lada_client .' | 4 # Build with e.g. `docker build --force-rm=true -t koala/lada_client .' |
5 # Run from the repository root-dir with e.g. | 5 # Run from the repository root-dir with e.g. |
6 # `docker run --name lada_client -v $PWD:/usr/local/apache2/htdocs/ | 6 # `docker run --name lada_client |
7 # --link lada_wildfly:lada-server -p 8182:80 -d koala/lada_client' | 7 # --link lada_wildfly:lada-server -p 8182:80 -d koala/lada_client' |
8 # | 8 # |
9 # The linked container may be created from the Dockerfile in the lada-server | 9 # The linked container may be created from the Dockerfile in the lada-server |
10 # repository. | 10 # repository. |
11 # | 11 # |
12 # The LADA-application will be available under http://yourdockerhost:8182 | 12 # The LADA-application will be available under http://yourdockerhost:8182 |
13 # | |
14 # Add `-v $PWD:/usr/local/apache2/htdocs/' to the run-command if you want to | |
15 # test your local changes (you'll have to run ./install-dependencies.sh again). | |
13 # | 16 # |
14 | 17 |
15 FROM httpd:2.4 | 18 FROM httpd:2.4 |
16 MAINTAINER tom.gottfried@intevation.de | 19 MAINTAINER tom.gottfried@intevation.de |
17 | 20 |