Skip to content

Commit 44eb4c2

Browse files
author
Sameer Naik
committed
release 4.0.9-1
1 parent 015eb37 commit 44eb4c2

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Automated builds of the image are available on [Dockerhub](https://hub.docker.co
5151
> **Note**: Builds are also available on [Quay.io](https://quay.io/repository/sameersbn/redis)
5252
5353
```bash
54-
docker pull sameersbn/redis:4.0.9
54+
docker pull sameersbn/redis:4.0.9-1
5555
```
5656

5757
Alternatively you can build the image yourself.
@@ -68,7 +68,7 @@ Start Redis using:
6868
docker run --name redis -d --restart=always \
6969
--publish 6379:6379 \
7070
--volume /srv/docker/redis:/var/lib/redis \
71-
sameersbn/redis:4.0.9
71+
sameersbn/redis:4.0.9-1
7272
```
7373

7474
*Alternatively, you can use the sample [docker-compose.yml](docker-compose.yml) file to start the container using [Docker Compose](https://docs.docker.com/compose/)*
@@ -81,7 +81,7 @@ You can customize the launch command of Redis server by specifying arguments to
8181
docker run --name redis -d --restart=always \
8282
--publish 6379:6379 \
8383
--volume /srv/docker/redis:/var/lib/redis \
84-
sameersbn/redis:4.0.9 --appendonly yes
84+
sameersbn/redis:4.0.9-1 --appendonly yes
8585
```
8686

8787
Please refer to http://redis.io/topics/config for further details.
@@ -108,7 +108,7 @@ docker run --name redis -d --restart=always \
108108
--publish 6379:6379 \
109109
--env 'REDIS_PASSWORD=redispassword' \
110110
--volume /srv/docker/redis:/var/lib/redis \
111-
sameersbn/redis:4.0.9
111+
sameersbn/redis:4.0.9-1
112112
```
113113

114114
Clients connecting to the Redis server will now have to authenticate themselves with the password `redispassword`.
@@ -123,7 +123,7 @@ By default the Redis server logs are sent to the standard output. Using the [Com
123123
docker run --name redis -d --restart=always \
124124
--publish 6379:6379 \
125125
--volume /srv/docker/redis:/var/lib/redis \
126-
sameersbn/redis:4.0.9 --logfile /var/log/redis/redis-server.log
126+
sameersbn/redis:4.0.9-1 --logfile /var/log/redis/redis-server.log
127127
```
128128

129129
To access the Redis logs you can use `docker exec`. For example:
@@ -141,7 +141,7 @@ To upgrade to newer releases:
141141
1. Download the updated Docker image:
142142

143143
```bash
144-
docker pull sameersbn/redis:4.0.9
144+
docker pull sameersbn/redis:4.0.9-1
145145
```
146146

147147
2. Stop the currently running image:
@@ -161,7 +161,7 @@ To upgrade to newer releases:
161161
```bash
162162
docker run --name redis -d \
163163
[OPTIONS] \
164-
sameersbn/redis:4.0.9
164+
sameersbn/redis:4.0.9-1
165165
```
166166

167167
## Shell Access

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.0.9
1+
4.0.9-1

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Redis:
2-
image: sameersbn/redis:4.0.9
2+
image: sameersbn/redis:4.0.9-1
33
ports:
44
- "6379:6379"
55
volumes:

0 commit comments

Comments
 (0)