Inception: My Infrastructure as Docker Compose
December 20, 2022
École 42
Related Posts
Hi! Inception is 42’s DevOps project: build a small web infrastructure entirely with Docker — and you are not allowed to pull ready-made images. Every container is built from your own Dockerfile on top of a bare Debian/Alpine base.
Writing the Dockerfiles yourself — instead of image: wordpress — forces you to understand what is actually inside: which process is PID 1, why daemonized services break containers, how PHP-FPM talks to NGINX over a socket, where the data really lives. Funny enough, this exact stack is what powered this very website for years — and the knowledge from Inception is what I still use today when deploying my own services with Docker and a reverse proxy.
Source code: github.com/Fatihcill/Inception
