<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/"><channel><title>Docker Essentials on Manzolo Code Notes</title><link>https://notes.manzolo.it/series/docker-essentials/</link><description>Recent content in Docker Essentials on Manzolo Code Notes</description><generator>Hugo -- 0.152.2</generator><language>en-US</language><lastBuildDate>Tue, 04 Nov 2025 09:00:00 +0200</lastBuildDate><atom:link href="https://notes.manzolo.it/series/docker-essentials/index.xml" rel="self" type="application/rss+xml"/><item><title>Installing NVIDIA Container Toolkit</title><link>https://notes.manzolo.it/2025/11/installing-nvidia-container-toolkit/</link><pubDate>Tue, 04 Nov 2025 09:00:00 +0200</pubDate><guid>https://notes.manzolo.it/2025/11/installing-nvidia-container-toolkit/</guid><description>A guide to installing the NVIDIA Container Toolkit to enable GPU support for Docker containers</description></item><item><title>Docker Compose Playground</title><link>https://notes.manzolo.it/2025/10/docker-compose-playground/</link><pubDate>Sat, 11 Oct 2025 20:43:00 +0200</pubDate><guid>https://notes.manzolo.it/2025/10/docker-compose-playground/</guid><description>&lt;h1 id="docker-playground-manager-"&gt;Docker Playground Manager 🐳&lt;/h1&gt;
&lt;p&gt;Introducing &lt;strong&gt;Docker Playground Manager&lt;/strong&gt;, a powerful tool for managing Docker development environments! Spin up containers for testing, learning, or experimenting with 100+ pre-configured images (Linux, Python, PostgreSQL, etc.) using an interactive terminal UI.&lt;/p&gt;
&lt;h2 id="whats-new-"&gt;What’s New? ✨&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;📚 MOTD guides for MySQL, PostgreSQL, and more.&lt;/li&gt;
&lt;li&gt;🎯 Category-based container selection.&lt;/li&gt;
&lt;li&gt;📺 New dashboard and enhanced stats.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="get-started-"&gt;Get Started 🚀&lt;/h2&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" style="color:#e6edf3;background-color:#0d1117;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"&gt;&lt;code class="language-bash" data-lang="bash"&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;git clone https://github.com/manzolo/docker-compose-playground.git
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;cd docker-compose-playground
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;chmod +x playground.sh
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;./playground.sh
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Explore the full feature set on &lt;a href="https://github.com/manzolo/docker-compose-playground"&gt;GitHub&lt;/a&gt;. Try it out, share feedback, or contribute to make it even better!&lt;/p&gt;</description></item><item><title>Advanced Docker Compose Guide with Examples</title><link>https://notes.manzolo.it/docker-compose/advanced_docker_compose_guide/</link><pubDate>Sat, 11 Oct 2025 09:00:00 +0200</pubDate><guid>https://notes.manzolo.it/docker-compose/advanced_docker_compose_guide/</guid><description>&lt;h1 id="advanced-docker-compose-guide-with-practical-examples"&gt;Advanced Docker Compose Guide with Practical Examples&lt;/h1&gt;
&lt;h2 id="table-of-contents"&gt;Table of Contents&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;&lt;a href="https://notes.manzolo.it/docker-compose/advanced_docker_compose_guide/#introduction"&gt;Introduction&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://notes.manzolo.it/docker-compose/advanced_docker_compose_guide/#prerequisites"&gt;Prerequisites&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://notes.manzolo.it/docker-compose/advanced_docker_compose_guide/#1-multi-file-composition"&gt;Multi-File Composition&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://notes.manzolo.it/docker-compose/advanced_docker_compose_guide/#2-environment-variables-and-env-files"&gt;Environment Variables&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://notes.manzolo.it/docker-compose/advanced_docker_compose_guide/#3-multi-stage-builds"&gt;Multi-Stage Builds&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://notes.manzolo.it/docker-compose/advanced_docker_compose_guide/#4-advanced-networking"&gt;Advanced Networking&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://notes.manzolo.it/docker-compose/advanced_docker_compose_guide/#5-volumes-and-data-persistence"&gt;Volumes and Persistence&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://notes.manzolo.it/docker-compose/advanced_docker_compose_guide/#6-healthchecks-and-dependencies"&gt;Healthchecks&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://notes.manzolo.it/docker-compose/advanced_docker_compose_guide/#7-secrets-management"&gt;Secrets Management&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://notes.manzolo.it/docker-compose/advanced_docker_compose_guide/#8-compose-watch-for-development"&gt;Compose Watch&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://notes.manzolo.it/docker-compose/advanced_docker_compose_guide/#9-production-deployment-patterns"&gt;Production Patterns&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://notes.manzolo.it/docker-compose/advanced_docker_compose_guide/#10-troubleshooting"&gt;Troubleshooting&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;hr&gt;
&lt;h2 id="introduction"&gt;Introduction&lt;/h2&gt;
&lt;p&gt;Docker Compose is a powerful tool for defining and running multi-container applications. This guide explores advanced features using a &lt;strong&gt;real-world Flask + PostgreSQL application&lt;/strong&gt; as the primary example.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;What we&amp;rsquo;ll build&lt;/strong&gt;: A production-ready web application with:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Flask web server&lt;/li&gt;
&lt;li&gt;PostgreSQL database with migrations&lt;/li&gt;
&lt;li&gt;pgAdmin for database management&lt;/li&gt;
&lt;li&gt;Automated backups&lt;/li&gt;
&lt;li&gt;Development and production configurations&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Repository&lt;/strong&gt;: &lt;a href="https://github.com/manzolo/docker-python-flask-postgres-template"&gt;docker-python-flask-postgres-template&lt;/a&gt;&lt;/p&gt;</description></item><item><title>Docker and Docker Compose</title><link>https://notes.manzolo.it/bash/docker/</link><pubDate>Fri, 26 Sep 2025 10:00:00 +0100</pubDate><guid>https://notes.manzolo.it/bash/docker/</guid><description>&lt;h1 id="docker-and-docker-compose-guide"&gt;Docker and Docker Compose Guide&lt;/h1&gt;
&lt;h2 id="introduction"&gt;Introduction&lt;/h2&gt;
&lt;p&gt;Docker is a platform for developing, shipping, and running applications inside containers. Docker Compose is a tool for defining and running multi-container Docker applications using YAML files. This guide covers essential Docker and Docker Compose commands, with practical examples, to help you manage containers effectively.&lt;/p&gt;
&lt;h2 id="what-is-docker"&gt;What is Docker?&lt;/h2&gt;
&lt;p&gt;Docker allows you to package applications with their dependencies into containers, ensuring consistency across different environments. Containers are lightweight, portable, and run independently of the host system.&lt;/p&gt;</description></item><item><title>Basic Docker Compose Guide for Beginners (Debian/Ubuntu)</title><link>https://notes.manzolo.it/docker-compose/basic_docker_compose_guide/</link><pubDate>Sat, 11 Oct 2025 09:55:00 +0200</pubDate><guid>https://notes.manzolo.it/docker-compose/basic_docker_compose_guide/</guid><description>&lt;h1 id="basic-docker-compose-guide-for-beginners-debianubuntu"&gt;Basic Docker Compose Guide for Beginners (Debian/Ubuntu)&lt;/h1&gt;
&lt;h2 id="introduction"&gt;Introduction&lt;/h2&gt;
&lt;p&gt;Docker Compose is a tool for defining and running multi-container Docker applications using a simple YAML file. This beginner-friendly guide explains how to install Docker and Docker Compose on Debian/Ubuntu, create a basic &lt;code&gt;docker-compose.yml&lt;/code&gt; file for a web application (Node.js) and database (PostgreSQL), run the application, and manage containers. It&amp;rsquo;s designed for users new to Docker who want to quickly set up a multi-container app.&lt;/p&gt;</description></item><item><title>Wordpress backing up (files and database) and dockerizing</title><link>https://notes.manzolo.it/2025/09/wordpress-backing-up-files-and-database-and-dockerizing/</link><pubDate>Sat, 27 Sep 2025 09:20:30 +0000</pubDate><guid>https://notes.manzolo.it/2025/09/wordpress-backing-up-files-and-database-and-dockerizing/</guid><description>&lt;h1 id="wordpress-management-script-usage-guide"&gt;WordPress Management Script Usage Guide&lt;/h1&gt;
&lt;h2 id="introduction"&gt;Introduction&lt;/h2&gt;
&lt;p&gt;The &lt;code&gt;wp-management&lt;/code&gt; &lt;a href="https://github.com/manzolo/BashCollection/blob/main/utils/wordpress/wp-management.sh"&gt;script&lt;/a&gt; is a powerful Bash tool designed to streamline the management of WordPress sites. It supports two primary functions: &lt;strong&gt;backing up&lt;/strong&gt; a WordPress site (including files and database) and &lt;strong&gt;dockerizing&lt;/strong&gt; a WordPress site to run in a containerized environment with automatic restoration of backups. This guide explains the script&amp;rsquo;s purpose, how to use it, and provides practical examples to help you get started.&lt;/p&gt;</description></item></channel></rss>