Skip to content

Commit f0ede94

Browse files
author
Sameer Naik
committed
release 1.12.2-3
1 parent 05a99dd commit f0ede94

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[![Docker Repository on Quay.io](https://quay.io/repository/sameersbn/nginx/status "Docker Repository on Quay.io")](https://quay.io/repository/sameersbn/nginx)
22

3-
# sameersbn/nginx:1.12.2-2
3+
# sameersbn/nginx:1.12.2-3
44

55
- [Introduction](#introduction)
66
- [Contributing](#contributing)
@@ -52,7 +52,7 @@ Automated builds of the image are available on [Dockerhub](https://hub.docker.co
5252
> **Note**: Builds are also available on [Quay.io](https://quay.io/repository/sameersbn/nginx)
5353
5454
```bash
55-
docker pull sameersbn/nginx:1.12.2-2
55+
docker pull sameersbn/nginx:1.12.2-3
5656
```
5757

5858
Alternatively you can build the image yourself.
@@ -68,7 +68,7 @@ Start NGINX using:
6868
```bash
6969
docker run --name nginx -d --restart=always \
7070
--publish 80:80 \
71-
sameersbn/nginx:1.12.2-2
71+
sameersbn/nginx:1.12.2-3
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/)*
@@ -80,7 +80,7 @@ You can customize the launch command of NGINX server by specifying arguments to
8080
```bash
8181
docker run --name nginx -it --rm \
8282
--publish 80:80 \
83-
sameersbn/nginx:1.12.2-2 -h
83+
sameersbn/nginx:1.12.2-3 -h
8484
```
8585

8686
## Configuration
@@ -91,7 +91,7 @@ To configure NGINX as per your requirements edit the default [nginx.conf](nginx.
9191
docker run --name nginx -it --rm \
9292
--publish 80:80 \
9393
--volume /srv/docker/nginx/nginx.conf:/etc/nginx/nginx.conf \
94-
sameersbn/nginx:1.12.2-2
94+
sameersbn/nginx:1.12.2-3
9595
```
9696

9797
To configure virtual hosts, mount the directory containing the virtual host configurations at `/etc/nginx/sites-enabled/`.
@@ -101,7 +101,7 @@ docker run --name nginx -it --rm \
101101
--publish 80:80 \
102102
--volume /srv/docker/nginx/nginx.conf:/etc/nginx/nginx.conf \
103103
--volume /srv/docker/nginx/sites-enabled:/etc/nginx/sites-enabled \
104-
sameersbn/nginx:1.12.2-2
104+
sameersbn/nginx:1.12.2-3
105105
```
106106

107107
> **Note**: SELinux users should update the security context of the host mountpoints so that it plays nicely with Docker:
@@ -134,7 +134,7 @@ To upgrade to newer releases:
134134
1. Download the updated Docker image:
135135

136136
```bash
137-
docker pull sameersbn/nginx:1.12.2-2
137+
docker pull sameersbn/nginx:1.12.2-3
138138
```
139139

140140
2. Stop the currently running image:
@@ -154,7 +154,7 @@ To upgrade to newer releases:
154154
```bash
155155
docker run -name nginx -d \
156156
[OPTIONS] \
157-
sameersbn/nginx:1.12.2-2
157+
sameersbn/nginx:1.12.2-3
158158
```
159159

160160
## Shell Access

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.12.2-2
1+
1.12.2-3

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
nginx:
2-
image: sameersbn/nginx:1.12.2-2
2+
image: sameersbn/nginx:1.12.2-3
33
ports:
44
- "80:80"
55
volumes:

kubernetes/pod.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ metadata:
77
spec:
88
containers:
99
- name: nginx
10-
image: sameersbn/nginx:1.12.2-2
10+
image: sameersbn/nginx:1.12.2-3
1111
ports:
1212
- containerPort: 80
1313
protocol: TCP

0 commit comments

Comments
 (0)