Moved 2c4110402f to content.md

Added "redis-server" into the example run command to use a custom config
file at launch
docker-library/official-images#858
This commit is contained in:
Will Barnwell 2015-07-06 16:47:48 -04:00
parent 2c4110402f
commit b999561fbc
1 changed files with 1 additions and 1 deletions

View File

@ -40,6 +40,6 @@ You can create your own Dockerfile that adds a redis.conf from the context into
Alternatively, you can specify something along the same lines with `docker run` options.
docker run -v /myredis/conf/redis.conf:/usr/local/etc/redis/redis.conf --name myredis redis /usr/local/etc/redis/redis.conf
docker run -v /myredis/conf/redis.conf:/usr/local/etc/redis/redis.conf --name myredis redis redis-server /usr/local/etc/redis/redis.conf
Where `/myredis/conf/` is a local directory containing your `redis.conf` file. Using this method means that there is no need for you to have a Dockerfile for your redis container.