diff options
author | startxfr <clarue@startx.fr> | 2014-11-20 09:34:55 +0100 |
---|---|---|
committer | startxfr <clarue@startx.fr> | 2014-11-20 09:34:55 +0100 |
commit | 910a26141f16336c96e304ebe850a4e5a0f97f95 (patch) | |
tree | bc1eef413af3a0c1b7bd3eeda7ceafc8d6ed87b2 /Applications | |
parent | 7f7d7e70ec819dbc4f1d88e29420e59549add0a9 (diff) | |
download | phpmyadmin-910a26141f16336c96e304ebe850a4e5a0f97f95.tar.gz phpmyadmin-910a26141f16336c96e304ebe850a4e5a0f97f95.tar.bz2 phpmyadmin-910a26141f16336c96e304ebe850a4e5a0f97f95.tar.xz phpmyadmin-910a26141f16336c96e304ebe850a4e5a0f97f95.zip |
modif des readme de chaque container pour etre plus expressif
Diffstat (limited to 'Applications')
-rw-r--r-- | Applications/phpmyadmin/README.md | 25 | ||||
-rw-r--r-- | Applications/rockmongo/README.md | 37 |
2 files changed, 42 insertions, 20 deletions
diff --git a/Applications/phpmyadmin/README.md b/Applications/phpmyadmin/README.md index 59eb6bd..e954532 100644 --- a/Applications/phpmyadmin/README.md +++ b/Applications/phpmyadmin/README.md @@ -1,32 +1,31 @@ -# STARTX Application docker-images : PhpMyAdmin +# STARTX Application docker-images : PHPMyAdmin +This container run phpMyAdmin on PHP server running under a fedora server. ## Running from docker registry + # docker run -it --name="pma" startx/app-pma - # docker run -d -p 8080:80 --name="test-pma" -e VIRTUAL_HOST=pma.project.startx.fr startx/app-phpmyadmin - -## Running from local Dockerfile - +## Build and run from local Dockerfile ### Building docker image Copy the sources to your docker host - # mkdir startx-docker-images; - # git clone https://github.com/startxfr/docker-images.git startx-docker-images/ - # cd startx-docker-images/Applications/phpmyadmin/ + mkdir startx-docker-images; + cd startx-docker-images; + git clone https://github.com/startxfr/docker-images.git . and build the container - # docker build --rm -t <username>/pma . + docker build -t startx/app-pma Applications/phpmyadmin/ ### Running local image - # docker run -d -p 8080:80 --name="test-pma" -e VIRTUAL_HOST=pma.project.startx.fr <username>/pma + # docker run -d -p 80:80 --name="pma" startx/app-pma ## Accessing server - # firefox http://localhost:8080 + # firefox http://localhost/pma ## Related Resources - * [Sources files](https://github.com/startxfr/docker-images/tree/master/Applications/phpmyadmin) * [Github STARTX profile](https://github.com/startxfr/docker-images) -* [Docker registry for this container](https://registry.hub.docker.com/u/startx/app-phpmyadmin/)
\ No newline at end of file +* [Docker registry for this container](https://registry.hub.docker.com/u/startx/app-phpmyadmin/) +* [Docker registry for Fedora](https://registry.hub.docker.com/u/fedora/)
\ No newline at end of file diff --git a/Applications/rockmongo/README.md b/Applications/rockmongo/README.md index ae847ae..e023217 100644 --- a/Applications/rockmongo/README.md +++ b/Applications/rockmongo/README.md @@ -1,10 +1,33 @@ -STARTX docker-images - RockMongo -================================ +# STARTX Application docker-images : Rockmongo +This container run Rockmongo on PHP server running under a fedora server. -**Description** -Based on the [maxexcloo rockmongo](https://github.com/maxexcloo/Docker) Dockerfile +## Running from docker registry + # docker run -it --name="rockmongo" startx/app-rockmongo + +## Build and run from local Dockerfile +### Building docker image +Copy the sources to your docker host + + mkdir startx-docker-images; + cd startx-docker-images; + git clone https://github.com/startxfr/docker-images.git . + +and build the container + + docker build -t startx/app-rockmongo Applications/rockmongo/ + +### Running local image + + # docker run -d -p 80:80 --name="rockmongo" startx/app-rockmongo + +## Accessing server + + # firefox http://localhost/rockmongo + +## Related Resources +* [Sources files](https://github.com/startxfr/docker-images/tree/master/Applications/rockmongo) +* [Github STARTX profile](https://github.com/startxfr/docker-images) +* [Docker registry for this container](https://registry.hub.docker.com/u/startx/app-rockmongo/) +* [Docker registry for Fedora](https://registry.hub.docker.com/u/fedora/) -**Usage** - docker run --name="test-rockmongo" -p 81:80 -d -e VIRTUAL_HOST=pma.project.dev.startx.fr startx/pma - docker run --name="test-rockmongo" -d --link test-mongo:test-mongo -e VIRTUAL_HOST=rm.project.dev.startx.fr startx/app-rockmongo |