diff --git a/content/projects/docker-baseimages.md b/content/projects/docker-baseimages.md new file mode 100644 index 0000000..33c6ae0 --- /dev/null +++ b/content/projects/docker-baseimages.md @@ -0,0 +1,24 @@ ++++ +title = "docker baseimages" +description = "creating baseimages for deployment" +date = "2021-11-04" +type = ["default"] ++++ + +--- + +## Docker baseimages for app deployment + +https://github.com/olofvndrhr/docker-baseimages + +This is a relatively small project. + +I thought, that if i deploy my apps with docker, then i should also create the base container for it. So i created a normal and a slim version. Both of them feature the [s6 overlay](https://github.com/just-containers/s6-overlay) and cron. The normal version also has some commonly used tools bundled with it. + +S6 is really practical, because you can set the userid and groupid mappings via environment variables and the services are always under supervison. + +```yml + environment: + - PUID= + - PGID= +``` \ No newline at end of file diff --git a/content/projects/ivn-sh.md b/content/projects/ivn-sh.md new file mode 100644 index 0000000..caacd4a --- /dev/null +++ b/content/projects/ivn-sh.md @@ -0,0 +1,17 @@ ++++ +title = "ivn.sh" +description = "ivn.sh - personal site" +date = "2021-11-10" +type = ["default"] ++++ + +--- + +## The creation of this site + +https://github.com/olofvndrhr/ivn.sh-conf + +I was unsure on how to create and deploy my personal site, without to much hassle. I landed on the pretty popular static site framework [hugo](https://gohugo.io/). It was relativly simple to setup and get working. + +For the deployment aspect, i went with [cloudflare pages](https://developers.cloudflare.com/pages/) for "hosting" and [web analytics](https://developers.cloudflare.com/analytics/web-analytics) for the analytics part. I choose this option because i already manage all my domains via cloudflare, and so everything is on one platform for management. + diff --git a/content/projects/manga-dlp.md b/content/projects/manga-dlp.md index 3ee8d72..dc0cef7 100644 --- a/content/projects/manga-dlp.md +++ b/content/projects/manga-dlp.md @@ -11,6 +11,6 @@ type = ["default"] https://github.com/olofvndrhr/manga-dlp -I was in search of a script to download multiple mangas at the same time. The best i found was [mangadex-dl](https://github.com/frozenpandaman/mangadex-dl) which didn't include multiple mangas, or all chapters at the same time. So i took inspiration from mangadex-dl a wrote a script myself. It includes all my needs and is extendable for other sites too. +I was in search of a script to download multiple mangas at the same time. The best i found was [mangadex-dl](https://github.com/frozenpandaman/mangadex-dl) which didn't include multiple mangas, or all chapters at the same time. So i took inspiration from mangadex-dl and wrote a script myself. It includes all my needs and is extendable for other sites too.