You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -51,7 +51,7 @@ Automated builds of the image are available on [Dockerhub](https://hub.docker.co
51
51
> **Note**: Builds are also available on [Quay.io](https://quay.io/repository/sameersbn/redis)
52
52
53
53
```bash
54
-
docker pull sameersbn/redis:4.0.9
54
+
docker pull sameersbn/redis:4.0.9-1
55
55
```
56
56
57
57
Alternatively you can build the image yourself.
@@ -68,7 +68,7 @@ Start Redis using:
68
68
docker run --name redis -d --restart=always \
69
69
--publish 6379:6379 \
70
70
--volume /srv/docker/redis:/var/lib/redis \
71
-
sameersbn/redis:4.0.9
71
+
sameersbn/redis:4.0.9-1
72
72
```
73
73
74
74
*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
81
81
docker run --name redis -d --restart=always \
82
82
--publish 6379:6379 \
83
83
--volume /srv/docker/redis:/var/lib/redis \
84
-
sameersbn/redis:4.0.9 --appendonly yes
84
+
sameersbn/redis:4.0.9-1 --appendonly yes
85
85
```
86
86
87
87
Please refer to http://redis.io/topics/config for further details.
0 commit comments