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/rockmongo | |
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/rockmongo')
-rw-r--r-- | Applications/rockmongo/README.md | 37 |
1 files changed, 30 insertions, 7 deletions
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 |