Repository for my personal website
- Clone the project, navigate into the
src
directory and runpython3 -m http.server
(requirespython3
be installed), the website should now be available atlocalhost:8000
- On a push to master the website will be deployed automatically by Railway
- The following commands can be used to locally build and run the Dockerfile that will be deployed
- build image:
docker build . -t trentprynn.com
- create container:
docker run -d --name trentprynn.com -p 8080:80 trentprynn.com
- stop container:
docker stop trentprynn.com
- delete container:
docker rm trentprynn.com
- delete image:
docker rmi trentprynn.com
- build image: