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
Thanks for taking the time to fill out this bug report!
10
+
11
+
Before you continue filling out this report, please take a moment to check that your bug has not been [already reported on GitHub][issue search] 🙌
12
+
13
+
Remember to redact any sensitive information such as authentication credentials and/or license keys!
14
+
15
+
**Note:** If you are seeking community support or have a question, please consider starting a new thread via [GitHub discussions][discussions] or the [NGINX Community forum][forum].
description: A clear and concise overview of the bug.
27
+
placeholder: When I do "X" with the NGINX unprivileged Docker image, "Y" happens instead of "Z".
28
+
validations:
29
+
required: true
30
+
31
+
- type: textarea
32
+
id: behavior
33
+
attributes:
34
+
label: Expected Behavior
35
+
description: A clear and concise description of what you expected to happen.
36
+
placeholder: When I do "X" with the NGINX unprivileged Docker image, I expect "Z" to happen.
37
+
validations:
38
+
required: true
39
+
40
+
- type: textarea
41
+
id: steps
42
+
attributes:
43
+
label: Steps to Reproduce the Bug
44
+
description: Detail the series of steps required to reproduce the bug. Deploy NGINX Unprivileged Docker image, View output/logs/configuration on '...', See error.
45
+
placeholder: When I run the NGINX Docker unprivileged image using [...], the image fails with an error message. If I check the terminal outputs and/or logs, I see the following error info.
46
+
validations:
47
+
required: true
48
+
49
+
- type: textarea
50
+
id: environment
51
+
attributes:
52
+
label: Environment Details
53
+
description: Please provide details about your environment.
54
+
value: |
55
+
- Version of Docker and method of installation: [e.g. Docker Desktop / Docker Server]
56
+
- Version/tag of the NGINX Docker unprivileged image or specific commit: [e.g. 1.4.3/commit hash]
Thanks for taking the time to fill out this feature request!
10
+
11
+
Before you continue filling out this request, please take a moment to check that your feature has not been [already requested on GitHub][issue search] 🙌
12
+
13
+
**Note:** If you are seeking community support or have a question, please consider starting a new thread via [GitHub discussions][discussions] or the [NGINX Community forum][forum].
Thanks for taking the time to fill out this security advisory!
10
+
11
+
Before you continue filling out this request, please take a moment to check that your advisory complies with the guidance in the [security documentation][security] and has not been [already reported on GitHub][issue search] 🙌
12
+
13
+
**Note:** If you are seeking community support or have a question, please consider starting a new thread via [GitHub discussions][discussions] or the [NGINX Community forum][forum].
Copy file name to clipboardexpand all lines: .github/pull_request_template.md
+5-4
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,8 @@ Describe the use case and detail of the change. If this PR addresses an issue on
6
6
7
7
Before creating a PR, run through this checklist and mark each as complete:
8
8
9
-
-[ ] I have read the [`CONTRIBUTING`](https://github.com/nginxinc/docker-nginx-unprivileged/blob/main/CONTRIBUTING.md) document
10
-
-[ ] I have run `./update.sh` and ensured all entrypoint/Dockerfile template changes have been applied to the relevant image entrypoint scripts & Dockerfiles
11
-
-[ ] I have tested that the NGINX Unprivileged Docker images build and run correctly on all supported architectures on an unprivileged environment (check out the [`README`](https://github.com/nginxinc/docker-nginx-unprivileged/blob/main/README.md) for more details)
12
-
-[ ] I have updated any relevant documentation ([`README`](https://github.com/nginxinc/docker-nginx-unprivileged/blob/main/README.md))
9
+
-[ ] I have read the [contributing guidelines](/CONTRIBUTING.md)
10
+
-[ ] I have signed the [F5 Contributor License Agreement (CLA)](https://github.com/f5/f5-cla/blob/main/docs/f5_cla.md)
11
+
-[ ] I have run the [`update.sh`](/update.sh) script and ensured all entrypoint/Dockerfile template changes have been applied to the relevant image entrypoint scripts & Dockerfiles
12
+
-[ ] I have tested that the NGINX Docker unprivileged image builds and runs correctly on all supported architectures on an unprivileged environment (check out the [`README`](/README.md) for more details)
13
+
-[ ] I have updated any relevant documentation ([`README.md`](/README.md))
- name: Run F5 Contributor License Agreement (CLA) assistant
19
+
if: (github.event.comment.body == 'recheck' || github.event.comment.body == 'I have hereby read the F5 CLA and agree to its terms') || github.event_name == 'pull_request_target'
custom-notsigned-prcomment: '🎉 Thank you for your contribution! It appears you have not yet signed the [F5 Contributor License Agreement (CLA)](https://github.com/f5/f5-cla/blob/main/docs/f5_cla.md), which is required for your changes to be incorporated into an F5 Open Source Software (OSS) project. Please kindly read the [F5 CLA](https://github.com/f5/f5-cla/blob/main/docs/f5_cla.md) and reply on a new comment with the following text to agree:'
29
+
custom-pr-sign-comment: 'I have hereby read the F5 CLA and agree to its terms'
30
+
custom-allsigned-prcomment: '✅ All required contributors have signed the F5 CLA for this PR. Thank you!'
31
+
# Remote repository storing CLA signatures.
32
+
remote-organization-name: f5
33
+
remote-repository-name: f5-cla-data
34
+
path-to-signatures: signatures/signatures.json
35
+
# Comma separated list of usernames for maintainers or any other individuals who should not be prompted for a CLA.
36
+
# NOTE: You will want to edit the usernames to suit your project needs.
# This workflow uses actions that are not certified by GitHub. They are provided by a third-party and are governed by separate terms of service, privacy policy, and support documentation.
3
+
name: OSSF Scorecard
4
+
on:
5
+
# For Branch-Protection check. Only the default branch is supported. See https://github.com/ossf/scorecard/blob/main/docs/checks.md#branch-protection.
6
+
branch_protection_rule:
7
+
# To guarantee Maintained check is occasionally updated. See https://github.com/ossf/scorecard/blob/main/docs/checks.md#maintained.
8
+
schedule:
9
+
- cron: "0 0 * * 1"
10
+
push:
11
+
branches: [main]
12
+
workflow_dispatch:
13
+
# Declare default permissions as read only.
14
+
permissions: read-all
15
+
jobs:
16
+
analysis:
17
+
name: Scorecard analysis
18
+
runs-on: ubuntu-24.04
19
+
# Delete the conditional below if you are using the OSSF Scorecard on a private repository.
# Publish the results for public repositories to enable scorecard badges. For more details, see https://github.com/ossf/scorecard-action#publishing-results.
38
+
publish_results: true
39
+
40
+
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF format to the repository Actions tab.
0 commit comments