Blog

Posts with Tag: docker

Nextcloud Setup

Posted on 2025-09-23 11:55

Let’s setup a simple nextcloud environment with the following parameters: Docker Based Collabora RHEL9 Setup Basis # Some General Tools dnf install -y vim wget tar unzip # Firewall systemctl enable --now firewalld # Docker per it's documentation (CentOS) dnf remove docker \...

Cron in Docker (PHP)

Posted on 2025-09-22 18:53

You wanna get corn running in a container? Maybe a php based container? This sucks. So let’s try to figure it out. What I did is create a docker image as following: FROM php:7.3-apache USER root # Install Cron & Sudo Package RUN apt-get update && \ apt-get install -y cron sudo # OTHER STUF...

GeoIP in Nginx Proxy Manager

Posted on 2025-09-18 7:02

I’ve tried to add GeoIP2 to my Nginx Proxy Manager. After finding a few blogs and articles that “explain” how to do it, I got more confused. Here is the final guide, that will help you. First you need to setup a 2nd docker container, that will download your GeoIP2 database from maxmind. They got a...

Docker Traefik Setup

Posted on 2025-09-18 6:59

This is my basic traefik setup for docker. Create the file and compose up the docker-compose and done. You can add let's encrypt if need be, or use custom certs. Here's the docker-compose.yml: networks: ingress: name: ingress volumes: traefik-letsencrypt: services: reverse-proxy:...