docker1 Min Read

How to connect to a running mysql service on host from a docker container on same host

Gorav Singal

March 31, 2020

TL;DR

Use host.docker.internal (Mac/Windows) or --network=host (Linux) to reach host services from inside a Docker container. Localhost inside a container refers to the container itself.

How to connect to a running mysql service on host from a docker container on same host

Introduction

I have a host running mysql (not on a container). I have to run an nodejs app inside a container and access that mysql service here. Note: The host is not exposed on internet or local network.

When I’m inside that nodejs container, I can not use

  • localhost, as it would refer to the container’s IP, not the host
  • , I can not use the hostname, as the host is not exposed to the internet or local network

Running container in Host networking mode

Docker provides lot of networking models. One of them is to use Host networking.

docker run -it --net=host -d node

Now when inside the container, you try to use hostname as localhost, it will work like a charm.

Docker host networking mode

With this networking mode, the container shares the same networking space as of host. The container does not gets its own ip. Example, if you run apache container on port 8080 with this networking mode. That service is available on localhost:8080 on host, without need to expose or binding the port.

It is important to note that with this option, port binding options are ignored like -p, —publish. And, this mode works only on linux hosts. This do not work on docker for mac, windows.

Share

Related Posts

How to Copy Local Docker Image to Another Host Without Repository and Load

How to Copy Local Docker Image to Another Host Without Repository and Load

Introduction Consider a scenario where you are building a docker image on your…

MySql update query - Update column by string replacement in all records

MySql update query - Update column by string replacement in all records

Problem Statement In a mysql table, I wanted to replace the hostname of the…

Docker: unauthorized: incorrect username or password.

Docker: unauthorized: incorrect username or password.

While running docker commands with some images, I started getting error: The…

Docker image for Drupal 7, and Php extension MongoDB installed.

Docker image for Drupal 7, and Php extension MongoDB installed.

You have drupal 7 image from docker hub, and want to connect tomongo db via php…

Docker Push: How to push your docker image to your organization in hub.docker.com

Docker Push: How to push your docker image to your organization in hub.docker.com

Tag the image, by seeing its image id, from docker images command docker tag 04d…

How to connect Php docker container with Mongo DB docker container

How to connect Php docker container with Mongo DB docker container

Goto your command terminal. Type: This will expose port: 27017 by default. You…

Latest Posts

AI Video Generation in 2025 — Models, Costs, and How to Build a Cost-Effective Pipeline

AI Video Generation in 2025 — Models, Costs, and How to Build a Cost-Effective Pipeline

AI video generation went from “cool demo” to “usable in production” in 2024-202…

AI Models in 2025 — Cost, Capabilities, and Which One to Use

AI Models in 2025 — Cost, Capabilities, and Which One to Use

Choosing the right AI model is one of the most impactful decisions you’ll make…

AI Image Generation in 2025 — Models, Costs, and How to Optimize Spend

AI Image Generation in 2025 — Models, Costs, and How to Optimize Spend

Generating one image with AI costs between $0.002 and $0.12. That might sound…

AI Coding Assistants in 2025 — Every Tool Compared, and Which One to Actually Use

AI Coding Assistants in 2025 — Every Tool Compared, and Which One to Actually Use

Two years ago, AI coding meant one thing: GitHub Copilot autocompleting your…

AI Agents Demystified — It's Just Automation With a Better Brain

AI Agents Demystified — It's Just Automation With a Better Brain

Let’s cut through the noise. If you read Twitter or LinkedIn, you’d think “AI…

Supply Chain Security — Protecting Your Software Pipeline

Supply Chain Security — Protecting Your Software Pipeline

In 2024, a single malicious contributor nearly compromised every Linux system on…