简体   繁体   中英

How to configure network using docker-compose

I'm using this docker image https://github.com/moodlehq/moodle-docker and it works as advertised. Among other things it exposes web server on localhost:8000 address. What I would like is to bind it to the host's ip instead.

Using raw docker something like that is accomplished with

docker run --network=host [container]

What should be placed in the yml file for docker-compose as documentation is a bit confusing for me.

You can use network_mode in compose files -

network_mode: "host"

Sample compose -

version: '3'
services:
  api:
    image: 'node:6-alpine'
    network_mode: host
    environment:
     - NODE_ENV=production
    command: "tail -f /dev/null"

Ref - https://docs.docker.com/compose/compose-file/#network_mode

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM