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
+11-9
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
[](https://circleci.com/gh/sameersbn/docker-redis)[](https://quay.io/repository/sameersbn/redis)
2
2
3
-
# quay.io/sameersbn/redis
3
+
# sameersbn/redis
4
4
5
5
-[Introduction](#introduction)
6
6
-[Contributing](#contributing)
@@ -47,10 +47,12 @@ If the above recommendations do not help then [report your issue](../../issues/n
47
47
48
48
## Installation
49
49
50
-
Automated builds of the image are available on [Quay.io](https://quay.io/repository/sameersbn/redis) and is the recommended method of installation.
50
+
Automated builds of the image are available on [Dockerhub](https://hub.docker.com/r/sameersbn/redis) and is the recommended method of installation.
51
+
52
+
> **Note**: Builds are also available on [Quay.io](https://quay.io/repository/sameersbn/redis)
51
53
52
54
```bash
53
-
docker pull quay.io/sameersbn/redis:latest
55
+
docker pull sameersbn/redis:latest
54
56
```
55
57
56
58
Alternatively you can build the image yourself.
@@ -69,7 +71,7 @@ Start Redis using:
69
71
docker run --name redis -d --restart=always \
70
72
--publish 6379:6379 \
71
73
--volume /srv/docker/redis:/var/lib/redis \
72
-
quay.io/sameersbn/redis:latest
74
+
sameersbn/redis:latest
73
75
```
74
76
75
77
*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/)*
@@ -82,7 +84,7 @@ You can customize the launch command of Redis server by specifying arguments to
82
84
docker run --name redis -d --restart=always \
83
85
--publish 6379:6379 \
84
86
--volume /srv/docker/redis:/var/lib/redis \
85
-
quay.io/sameersbn/redis:latest --appendonly yes
87
+
sameersbn/redis:latest --appendonly yes
86
88
```
87
89
88
90
Please refer to http://redis.io/topics/config for further details.
0 commit comments