docker-nginx
docker-nginx copied to clipboard
Official NGINX Dockerfiles
Envsubst happens every time you start the container. Wouldn't it be better if it passed after finding file already touched by it? This overwrites any manual changes made to the...
Using this (partial) configuration: ``` resolver 8.8.8.8 valid=300s ipv6=off; resolver_timeout 10s; upstream gs { server storage.googleapis.com:443; keepalive 128; } server { location / { proxy_set_header Host storage.googleapis.com; proxy_pass https://gs/$bucket_name$uri; proxy_http_version...
```docker # alpine-slim/Dockerfile ENTRYPOINT ["/docker-entrypoint.sh"] EXPOSE 80 STOPSIGNAL SIGQUIT CMD ["nginx", "-g", "daemon off;"] ``` ```bash # entrypoint/docker-entrypoint.sh if [ "$1" = "nginx" ] || [ "$1" = "nginx-debug" ];...
### Proposed changes Simplify package installation in non-slim variants. This can also be used in user images to install packages directly. ### Checklist Before creating a PR, run through this...
### Describe the bug Can't build the nginx image successfully due to a failure to fetch the GPG key. The following is part of the Dockerfile that I use: ```bash...
### Describe the bug Looks like the base image was updated long ago in 7c10a4a1c2, but the official images are still based on 3.17. ### To reproduce https://hub.docker.com/_/nginx/tags?page=1&name=1.24.0-alpine ### Expected...
### Describe the bug Attempting to utilise [quic_bpf](https://nginx.org/en/docs/http/ngx_http_v3_module.html#quic_bpf) results in the following error: ``` 2023/09/28 22:48:53 [alert] 1#1: failed to create BPF map (1: Operation not permitted) nginx: [alert] failed...
### Is your feature request related to a problem? Please describe Our build requires an nginx container with lua. Based on [these excellent instructions](https://github.com/nginxinc/docker-nginx/tree/master/modules#docker-compose-with-pre-packaged-modules), we use [this Dockerfile](https://raw.githubusercontent.com/nginxinc/docker-nginx/master/modules/Dockerfile). Right now,...
### Describe the bug I have deployed angular file with docker and nginx file but from harness pipeline CI done but CD got issue and in the CD i have...