This repo serves as a simple dockerized Resume that can be implemented on any operating system.
To be able to use it you need to have docker installed as per this link.
Then just clone the repo and run the following commands from inside the folder:
docker build -t resume .
docker run -d --rm -p 4000:4000 --name resume resumeThe last step is to navigate to http://localhost:4000 on any local browser
To remove the container:
docker rm -f resume
docker rmi -f resumeThis project was inspired and built on the basis of this GitHub project