Just a simple home page website.
npm install
npm run serve
npm run build
npm run lint
docker build command:
sudo docker build --tag justintavares-web/latest ./
docker run command:
sudo docker run --publish 8080:80 --detach --name justintavares-web justintavares-web/latest
with mounted directory:
sudo docker run -p 8080:80 -d -it --name justintavares-web --mount type=bind,source=/home/justin/files,target=/usr/share/nginx/html/files,readonly justintavares-web/latest