Procedure for updating Nginx Docker image
See original GitHub issueRegarding the docker image which meteor-up uses for the proxy; is it possible to update to a newer version of this image using the mup CLI, or is there an accepted way to do this? This is necessary to keep nginx
up to date, but I want to do so without interfering with the normal mup process, so I’ve been avoiding manually updating the image.
Issue Analytics
- State:
- Created 3 years ago
- Reactions:4
- Comments:6
Top Results From Across the Web
How to Deploy an NGINX Image with Docker
Use the NGINX image from the Docker Hub repository or create your own NGINX Plus image to easily deploy NGINX in Docker containers....
Read more >Quick deployment: NGINX within a Docker container - AskF5
Open a command prompt on your host system running Docker, with administrative privileges. Deploy the default NGINX image, binding volumes for ...
Read more >nginx - Official Image - Docker Hub
How to use this image. Hosting some simple static content. $ docker run --name some-nginx -v /some/content:/usr/share/nginx/html:ro -d nginx.
Read more >How To Containerize and Use Nginx as a Proxy | DigitalOcean
In this DigitalOcean article, we will learn about quickly setting up docker, creating a docker container from a base image, and building it...
Read more >Upgrading the Wallarm Docker NGINX- or Envoy-based image
Step 1: Download the updated filtering node image¶ · Step 2: Stop the running container¶ · Step 3: Run the container using the...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I agree, the current nginx version for this package is: 1.19.3, and has the following security concerns: https://nvd.nist.gov/vuln/detail/CVE-2021-23017
I think it would be possible just to replace:
FROM jwilder/nginx-proxy:0.8.0
with:
FROM nginxproxy/nginx-proxy:0.9
in the repo: https://github.com/zodern/nginx-proxy/blob/master/Dockerfile
references:
Hi, @conorstrejcek, I’ve managed to run
jwilder/nginx-proxy:latest
as an alternative to the default nginx-proxy image. Just wanetd to share my solution with you.I used this file as a guide to run jwilder’s image. Just log into your server (as root if you need this to manage docker container). This script is does this:
Also @zodern, since we have this simple workaround, could you, please, consider to add ability to use custom nginx-proxy docker image? I don’t have skills to fork and build npm package to add this option to mup. I think a
proxy.image
option inmup.js
would be awesome!Cheers, Teo