docker-nginx
docker-nginx copied to clipboard
Official NGINX Dockerfiles
docker-compose.yaml: version: '3' services: web: image: nginx volumes: - ./templates:/etc/nginx/templates ports: - "8080:8080" templates/default.conf.template: server { listen ${NGINX_PORT:-8080}; server_name localhost; location / { root /usr/share/nginx/html; index index.html index.htm; } error_page...
feat: Update Dockerfile ENV instructions to use `=` instead of whitespace as the key value separator
### Proposed changes Update the various Dockerfile ENV instructions to use the new format (using `=` as the key value separator instead of a whitespace) per the latest docs (https://docs.docker.com/reference/dockerfile/#env)....
I have read these issues: - https://github.com/nginxinc/docker-nginx/issues/485 - https://github.com/nginxinc/docker-nginx/issues/867 and think that most people now think, that this dockerized version of Nginx will support HTTP3/QUIC - but it does not,...
### Describe the bug I'm trying to use tls1.2 and it doesn't work. Goes to tls1.3. ### To reproduce Steps to reproduce the behavior: 1. docker compose, build image from...
### Describe the bug It seems alpine today updated python3. This broke the `modules/Dockerfile.alpine`. `hg clone` fails. ``` … #10 12.55 (63/63) Installing xz (5.6.2-r0) #10 12.60 Executing busybox-1.36.1-r29.trigger #10...
The Dockerfiles used to build the Nginx images use the environment variable `NGINX_VERSION` to internally specify the NGINX version to download or build. Is this an implementation detail, subject to...
### Describe the bug When setting `securityContext`.`readOnlyRootFilesystem` to true, we encounter an issue with the NGINX Docker image version 1.27.1. The following info log appears: ``` /docker-entrypoint.sh: /docker-entrypoint.d/ is not...
Similarly to previously reported, in quickjs: https://github.com/nginxinc/docker-nginx/issues/881
### Is your feature request related to a problem? Please describe NGINX_USE_LOCAL_RESOLVER needs to be documented in the docs, see https://github.com/nginxinc/docker-nginx/issues/673 for more details
It'd be easier for Docker library maintainers to reference us in the issues, see https://github.com/docker-library/docs/issues/2470 for more details.