Skip to content

Latest commit

 

History

History
42 lines (33 loc) · 863 Bytes

README.md

File metadata and controls

42 lines (33 loc) · 863 Bytes

portfolio

Just a simple home page website.

Project setup

npm install

Compiles and hot-reloads for development

npm run serve

Compiles and minifies for production

npm run build

Lints and fixes files

npm run lint

Customize configuration

See Configuration Reference.

Docker commands (For Justin's reference until I set up a proper CI/CD pipeline)

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