# STARTX Services docker-images : PostgreSQL Server This container run memcached on fedora server. ## Running from docker registry # 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 ## 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 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/)