Fading Coder

One Final Commit for the Last Sprint

Deploying MySQL 5.7 in Docker with Host Directory Mounts

To begin, pull the official MySQL 5.7 image from Docker Hub. docker pull mysql:5.7 For Apple Silicon (M1/M2) Macs, an alternative image may be required: docker pull mysql/mysql-server:5.6 Next, create the necessary directories on the host machine that will be mounted into the container. These direct...

VXLAN on Linux: Point-to-Point Tunnels and Cross-Host Docker Networking

Linux VXLAN support The in-kernel VXLAN driver landed in Linux 3.7 (2012). Produtcion deployments typical target ≥3.9/3.10 for maturity and feature coverage. The driver supports IPv4/IPv6 underlay, unicast and multicast flood/learn, and integrates with iproute2. Check availability by inspecting ipro...

Deploying Jira and Confluence on Docker with an External Database

Run Jira Software and Confluence in Docker with persistent storage and a production-ready external database. Use an official evaluation or purchased license from Atlassian during setup; this article does not cover bypassing licensing. Prerequisites Docker and Docker Compose installed Outbound intern...

Protecting the Node-RED Editor with Admin Authentication in Docker

The Node-RED editor and admin API are open by default. You can enable a simple username/password challenge by editing the settings.js file in your data directory. This walkthrough shows how to do that when running Node-RED in Docker, including generating a bcrypt hash for the password. Run Node-RED...

Pushing Docker Images to Private Registries

Push images to a private repository by tagging them with the correct repository name (and registry host when needed) and then pushing with Docker CLI. It also includes examples for Docker Hub, self‑hosted registries, and Maven-based automation. Core commands and tagging syntax Tag syntax docker tag...

Creating MySQL Users for a Dockerized MySQL Container

Environment macOS 10.13.3 Docker 17.12.0-ce Image: mysql:5.7.21 Example container: CONTAINER ID: 478bbac9137b IMAGE: mysql:5.7.21 PORTS: 0.0.0.0:3306->3306/tcp NAMES: mysql.5.7.21.plus Start the container and connect as root Start the MySQL container and connect from the host using the MySQL clie...