Meta Post 1
The deployment story for my personal websites has come a long way. I started with uploading stuff to 000webhost with FTP, not long ago I was using a script which would ssh into my server, pull changes from git and build the site on the server.
Now I'm using one command to build a docker image and publish it to the docker registry, which my unraid server will pull down and update my site:
Now I'm using one command to build a docker image and publish it to the docker registry, which my unraid server will pull down and update my site:
docker build -t inhji/rwx:dev . && docker push inhji/rwx:dev