Skip to content

Commit c933903

Browse files
committed
chore: Replace nginxinc org mentions with nginx
1 parent 930b611 commit c933903

File tree

6 files changed

+15
-15
lines changed

6 files changed

+15
-15
lines changed

.github/workflows/alpine-mainline.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ jobs:
8989
with:
9090
images: |
9191
docker.io/nginxinc/nginx-unprivileged
92-
ghcr.io/nginxinc/nginx-unprivileged
92+
ghcr.io/nginx/nginx-unprivileged
9393
public.ecr.aws/nginx/nginx-unprivileged
9494
quay.io/nginx/nginx-unprivileged
9595
tags: |
@@ -207,7 +207,7 @@ jobs:
207207
with:
208208
images: |
209209
docker.io/nginxinc/nginx-unprivileged
210-
ghcr.io/nginxinc/nginx-unprivileged
210+
ghcr.io/nginx/nginx-unprivileged
211211
public.ecr.aws/nginx/nginx-unprivileged
212212
quay.io/nginx/nginx-unprivileged
213213
tags: |
@@ -325,7 +325,7 @@ jobs:
325325
with:
326326
images: |
327327
docker.io/nginxinc/nginx-unprivileged
328-
ghcr.io/nginxinc/nginx-unprivileged
328+
ghcr.io/nginx/nginx-unprivileged
329329
public.ecr.aws/nginx/nginx-unprivileged
330330
quay.io/nginx/nginx-unprivileged
331331
tags: |

.github/workflows/alpine-stable.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ jobs:
8989
with:
9090
images: |
9191
docker.io/nginxinc/nginx-unprivileged
92-
ghcr.io/nginxinc/nginx-unprivileged
92+
ghcr.io/nginx/nginx-unprivileged
9393
public.ecr.aws/nginx/nginx-unprivileged
9494
quay.io/nginx/nginx-unprivileged
9595
tags: |
@@ -199,7 +199,7 @@ jobs:
199199
with:
200200
images: |
201201
docker.io/nginxinc/nginx-unprivileged
202-
ghcr.io/nginxinc/nginx-unprivileged
202+
ghcr.io/nginx/nginx-unprivileged
203203
public.ecr.aws/nginx/nginx-unprivileged
204204
quay.io/nginx/nginx-unprivileged
205205
tags: |
@@ -309,7 +309,7 @@ jobs:
309309
with:
310310
images: |
311311
docker.io/nginxinc/nginx-unprivileged
312-
ghcr.io/nginxinc/nginx-unprivileged
312+
ghcr.io/nginx/nginx-unprivileged
313313
public.ecr.aws/nginx/nginx-unprivileged
314314
quay.io/nginx/nginx-unprivileged
315315
tags: |

.github/workflows/debian-mainline.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ jobs:
8989
with:
9090
images: |
9191
docker.io/nginxinc/nginx-unprivileged
92-
ghcr.io/nginxinc/nginx-unprivileged
92+
ghcr.io/nginx/nginx-unprivileged
9393
public.ecr.aws/nginx/nginx-unprivileged
9494
quay.io/nginx/nginx-unprivileged
9595
tags: |
@@ -208,7 +208,7 @@ jobs:
208208
with:
209209
images: |
210210
docker.io/nginxinc/nginx-unprivileged
211-
ghcr.io/nginxinc/nginx-unprivileged
211+
ghcr.io/nginx/nginx-unprivileged
212212
public.ecr.aws/nginx/nginx-unprivileged
213213
quay.io/nginx/nginx-unprivileged
214214
tags: |

.github/workflows/debian-stable.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ jobs:
8989
with:
9090
images: |
9191
docker.io/nginxinc/nginx-unprivileged
92-
ghcr.io/nginxinc/nginx-unprivileged
92+
ghcr.io/nginx/nginx-unprivileged
9393
public.ecr.aws/nginx/nginx-unprivileged
9494
quay.io/nginx/nginx-unprivileged
9595
tags: |
@@ -200,7 +200,7 @@ jobs:
200200
with:
201201
images: |
202202
docker.io/nginxinc/nginx-unprivileged
203-
ghcr.io/nginxinc/nginx-unprivileged
203+
ghcr.io/nginx/nginx-unprivileged
204204
public.ecr.aws/nginx/nginx-unprivileged
205205
quay.io/nginx/nginx-unprivileged
206206
tags: |

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ To suggest a feature or enhancement, please create an issue on GitHub with the l
2626

2727
- Fork the repo, create a branch, implement your changes, test that the corresponding Docker images can be built and run as intended, and submit a PR when your changes are **tested** and ready for review.
2828
- Fill in the [PR template](/.github/pull_request_template.md).
29-
- This repository is a mirror image of the upstream [NGINX Docker image](https://github.com/nginxinc/docker-nginx) with minor changes in order to support running NGINX in an unprivileged environment. As such only two types of PRs will be considered:
29+
- This repository is a mirror image of the upstream [NGINX Docker image](https://github.com/nginx/docker-nginx) with minor changes in order to support running NGINX in an unprivileged environment. As such only two types of PRs will be considered:
3030

3131
1. PRs that incorporate changes made to the upstream image that have not yet been ported to this image (e.g. there's a new NGINX release).
3232
2. PRs that add a critical feature or a nice-to-have enhancement for running these images on an unprivileged environment (e.g. allowing users specify to the UID/GID of the image user).

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
# NGINX Unprivileged Docker Image
99

10-
This repo contains a series of Dockerfiles to create an NGINX Docker image that runs NGINX as a non root, unprivileged user. Notable differences with respect to the official [NGINX Docker](https://github.com/nginxinc/docker-nginx) image include:
10+
This repo contains a series of Dockerfiles to create an NGINX Docker image that runs NGINX as a non root, unprivileged user. Notable differences with respect to the official [NGINX Docker](https://github.com/nginx/docker-nginx) image include:
1111

1212
- The default NGINX listen port is now `8080` instead of `80` (this is no longer necessary as of Docker `20.03` but it's still required in other container runtimes)
1313
- The default NGINX user directive in `/etc/nginx/nginx.conf` has been removed
@@ -24,7 +24,7 @@ You can find pre-built images in each of the following registries:
2424

2525
- Amazon ECR - <https://gallery.ecr.aws/nginx/nginx-unprivileged>
2626
- Docker Hub - <https://hub.docker.com/r/nginxinc/nginx-unprivileged>
27-
- GitHub Container Registry - <https://github.com/nginxinc/docker-nginx-unprivileged/pkgs/container/nginx-unprivileged>
27+
- GitHub Container Registry - <https://github.com/nginx/docker-nginx-unprivileged/pkgs/container/nginx-unprivileged>
2828
- Quay - <https://quay.io/repository/nginx/nginx-unprivileged>
2929

3030
### Image Builds and Retention Policy
@@ -69,8 +69,8 @@ Most images are built for the `amd64`, `arm32v5` (for Debian), `arm32v6` (for Al
6969
Whilst issues and PRs are welcome, please do note that:
7070
7171
1. Issues related to security vulnerabilities will be promptly closed unless they are accompanied by a solid reasoning as to why the vulnerability poses a real security threat to this image. Check out the [`security documentation`](/SECURITY.md) for more details.
72-
2. These images are unprivileged ports of the upstream [Docker NGINX](https://github.com/nginxinc/docker-nginx) images. Any changes that do not specifically involve the changes made to run NGINX on an unprivileged system should be reported in the [Docker NGINX](https://github.com/nginxinc/docker-nginx) upstream repo. They will not get addressed here.
73-
3. Following from 2., base images (e.g. Alpine x.x or Debian x) in the [Docker NGINX](https://github.com/nginxinc/docker-nginx) upstream repo get updated when a new version of NGINX is released, never within the same release version. Similarly, new NGINX releases usually make their way to the [Docker NGINX](https://github.com/nginxinc/docker-nginx) image a couple days after their standard release. Please refrain from opening an issue or PR here if the upstream repo hasn't been updated -- it will be closed.
72+
2. These images are unprivileged ports of the upstream [Docker NGINX](https://github.com/nginx/docker-nginx) images. Any changes that do not specifically involve the changes made to run NGINX on an unprivileged system should be reported in the [Docker NGINX](https://github.com/nginx/docker-nginx) upstream repo. They will not get addressed here.
73+
3. Following from 2., base images (e.g. Alpine x.x or Debian x) in the [Docker NGINX](https://github.com/nginx/docker-nginx) upstream repo get updated when a new version of NGINX is released, never within the same release version. Similarly, new NGINX releases usually make their way to the [Docker NGINX](https://github.com/nginx/docker-nginx) image a couple days after their standard release. Please refrain from opening an issue or PR here if the upstream repo hasn't been updated -- it will be closed.
7474
7575
## Contributing
7676

0 commit comments

Comments
 (0)