typo and add 2 projects

This commit is contained in:
Ivan Schaller 2021-12-25 20:56:09 +01:00
parent 477c9dca5f
commit e56d982a9a
3 changed files with 42 additions and 1 deletions

View file

@ -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=
```

View file

@ -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.

View file

@ -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.