The docker-proxy - boring wozniak
windsock.io › the-docker-proxyApr 15, 2015 · Sl 0:00 docker-proxy -proto tcp -host-ip 0.0.0.0 -host-port 8000 -container-ip 172.17.0.2 -container-port 8000 The purpose of this process is to enable a service consumer to communicate with the service providing container .... but it's only used in particular circumstances.
Docker Hub
https://hub.docker.com/r/klakegg/hugoThe onbuild images adds content of the folder of your Dockerfile into /src and builds to the /target (prior to 0.68.0: /onbuild) folder. Example Dockerfile for your project where the site is made into an nginx image (Docker 17.05-ce or newer): FROM klakegg/hugo:0.83.1-onbuild AS hugo FROM nginx COPY --from=hugo /target /usr/share/nginx/html.