Let's setup a docker container using Nginx and a free website template from Tooplate.
The Infinite Loop template.
https://www.tooplate.com/view/2117-in...
This is built on Ubuntu 18.04 desktop.
The docker file:
FROM nginx
MAINTAINER steve
RUN mv /usr/share/nginx/html/index.html /usr/share/nginx/html/backupindex.html
RUN mv /usr/share/nginx/html/50x.html /usr/share/nginx/html/backup50x.html
RUN apt update
ADD web /usr/share/nginx/html
Docker build:
docker build -t nginxweb1 .
Docker run:
docker run -p 80:80 nginxweb1
Git hub link to this and other Docker Nginx container builds.
https://github.com/stevecosner/docker...