Question
Docker內(nèi)需要訪問本機(jī)的數(shù)據(jù)庫,如何訪問。使用127.0.0.1肯定是不行的,因?yàn)檫@個(gè)在Docker容器里面指的是容器本身。所以,需要走別動(dòng)渠道進(jìn)行解決。
Solution
下面幾種辦法,根據(jù)操作系統(tǒng)的類型,選取其一即可。
DockerFile:
RUN /sbin/ip route|awk '/default/ { print $3,"\tdockerhost" }' >> /etc/hosts
RunTime:
(may not use) docker run --add-host dockerhost:`/sbin/ip route|awk '/default/ { print $3}'` [my container]
(useful) docker run --add-host=dockerhost:`docker network inspect --format='{{range .IPAM.Config}}{{.Gateway}}{{end}}' bridge` [IMAGE]
Docker for Mac (17.12+):
docker.for.mac.host.internal
MONGO_SERVER=docker.for.mac.host.internal
# docker-compose.yml
version: '3'
services:
api:
build: ./api
volumes:
- ./api:/usr/src/app:ro
ports:
- "8000"
environment:
- MONGO_SERVER
command: /usr/local/bin/gunicorn -c /usr/src/app/gunicorn_config.py -w 1 -b :8000 wsgi
Linux
# Solution 1
/sbin/ip route|awk '/default/ { print $3 }'
docker run --add-host dockerhost:`/sbin/ip route|awk '/default/ { print $3}'` [my container]
# Solution 2
-e "DOCKER_HOST=$(ip -4 addr show docker0 | grep -Po 'inet \K[\d.]+')"
Principle
想知道原理,需要了解計(jì)算機(jī)網(wǎng)絡(luò)的模型和docker實(shí)現(xiàn)的模型。docker內(nèi)部實(shí)際上實(shí)現(xiàn)了一個(gè)虛擬網(wǎng)橋docker0,需要通過網(wǎng)橋找到外部宿主機(jī)的在網(wǎng)橋的虛擬地址,也就是docker.for.mac.host.internal,就可以實(shí)現(xiàn)容器內(nèi)訪問外部宿主機(jī)。感興趣的話可以了解下Docker的網(wǎng)絡(luò)原理、計(jì)算機(jī)網(wǎng)絡(luò)原理和docker compose等內(nèi)容。
Reference
[1].(stackoverflow)insert-docker-parent-host-ip-into-containers-hosts-file
[2].(stackoverflow)how-to-get-the-ip-address-of-the-docker-host-from-inside-a-docker-container
以上就是本文的全部內(nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。