summaryrefslogtreecommitdiffstats
path: root/Services/memcache
diff options
context:
space:
mode:
authorstartxfr <clarue@startx.fr>2014-11-20 09:34:55 +0100
committerstartxfr <clarue@startx.fr>2014-11-20 09:34:55 +0100
commit910a26141f16336c96e304ebe850a4e5a0f97f95 (patch)
treebc1eef413af3a0c1b7bd3eeda7ceafc8d6ed87b2 /Services/memcache
parent7f7d7e70ec819dbc4f1d88e29420e59549add0a9 (diff)
downloadphpmyadmin-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 'Services/memcache')
-rw-r--r--Services/memcache/README.md39
1 files changed, 27 insertions, 12 deletions
diff --git a/Services/memcache/README.md b/Services/memcache/README.md
index f81f3de..d76d05d 100644
--- a/Services/memcache/README.md
+++ b/Services/memcache/README.md
@@ -1,16 +1,31 @@
-docker-images MariaDB
-=====================
+# STARTX Services docker-images : PostgreSQL Server
+This container run memcached on fedora server.
-**Description**
-Based on the [tutum php](https://registry.hub.docker.com/u/tutum/mariadb) Dockerfile
+## Running from docker registry
-**Usage**
-
- docker run --name="test-maria" -d startx/sv-maria
+ # docker run -d -p 3306:3306 --name="memcache" startx/sv-memcache
+ # when linked to another container
+ # docker run -d --name="memcache" startx/sv-memcache
+ # docker run -d --name="php" --link memcache:memcache startx/sv-php
- docker run --name="test-maria" -d startx/sv-maria
- docker run -d -p 3306:3306 startx/sv-maria
- docker run -d -p 3306:3306 --name="test-maria" startx/sv-maria
+## Build and run from local Dockerfile
+### Building docker image
+Copy the sources to your docker host
- docker run -d --name="test-maria" startx/sv-maria // linked to another container
- docker run -d --name="test-www" --link test-maria:maria startx/sv-php
+ mkdir startx-docker-images;
+ cd startx-docker-images;
+ git clone https://github.com/startxfr/docker-images.git .
+
+and build the container
+
+ docker build -t sv-memcache Services/memcache/
+
+### Running local image
+
+ # docker run -d -p 3306:3306 --name="memcache" sv-memcache
+
+## Related Resources
+* [Sources files](https://github.com/startxfr/docker-images/tree/master/Services/memcache)
+* [Github STARTX profile](https://github.com/startxfr/docker-images)
+* [Docker registry for this container](https://registry.hub.docker.com/u/startx/sv-memcache/)
+* [Docker registry for Fedora](https://registry.hub.docker.com/u/fedora/) \ No newline at end of file