Posts tagged "docker"

Docker SFTP Port Works on localhost but Times Out from Outside (Debian 12 + ferm + Linode NAT)

I hit a classic “it must be Docker” moment. This post documents what was actually happening and the minimal, correct fix. The setup Symptom, “Local open, remote timeout” On the server: Everything looked correct: Docker was listening on 0.0.0.0:22222, and localhost could connect. But from outside, connections to port 22222 timed out. First principle, don’t… Continue reading

Understanding Docker Connectivity, Networking and Configurations.

When working with Docker to build scalable applications, networking and service configuration are critical components. Over the course of our exploration, we’ve touched on a variety of topics, starting with creating a docker-compose.yaml template, understanding network modes like bridge and host, and configuring services like MySQL. This article captures the complete journey to demystify Docker’s… Continue reading

Where Docker Stores Images on Debian 12 and How to Customize the Storage Directory

Continuing from our previous article on setting up Docker and running Docker Compose on Debian 12 Bookworm, let’s dive deeper into understanding where Docker stores its image files and how to customize the storage directory for better management. Default Docker Image Storage Location on Debian 12 By default, Docker stores all its data, including images,… Continue reading