|
|
|
|
|
by ggpsv
873 days ago
|
|
Docker is great but it is easy to shoot yourself on the foot if you use it conveniently but don't actually understand it. A common mistake is to publish the Docker ports unknowingly to all interfaces (e.g `5432:5432`), which makes your Docker container available to everyone. It is common to see this in Docker tutorials or pre-made Docker Compose files. Coupled with UFW, it may give you a false sense of security because Docker manages its own iptables rules. |
|