skip to Main Content

Using Docker multi-stage builds

I have two containers for two separate sites and one container for nginx. All I want to do is to copy build files of each site to /usr/share/nginx/html/<site_name>/ in nginx container. I want to keep separate Dockerfile for each site…

VIEW QUESTION

nginx docker build fails

I was using the following dockerfile to build a nginx docker image with some additional modules: FROM nginx:mainline-alpine RUN apk update RUN apk add nginx-extras libnginx-mod-http-dav-ext libnginx-mod-http-auth-pam This was successful in the past. But when I try to rebuild the…

VIEW QUESTION
Back To Top
Search