通过docker-compose为Docker容器提供静态IP


95

我正在尝试为容器提供静态IP地址。我了解我必须创建一个自定义网络。我创建了它,并且网桥接口已在主机(Ubuntu 16.x)上启动。容器从该子网获取IP,但不是我提供的静态IP。

这是我的docker-compose.yml:

version: '2'

services:
  mysql:
    container_name: mysql
    image: mysql:latest
    restart: always
    environment:
      - MYSQL_ROOT_PASSWORD=root
    ports:
     - "3306:3306"
    networks:
     - vpcbr

  apigw-tomcat:
    container_name: apigw-tomcat
    build: tomcat/.
    ports:
     - "8080:8080"
     - "8009:8009"
    networks:
     - vpcbr
    depends_on:
     - mysql

networks:
  vpcbr:
    driver: bridge
    ipam:
     config:
       - subnet: 10.5.0.0/16
         gateway: 10.5.0.1
         aux_addresses:
          mysql: 10.5.0.5
          apigw-tomcat: 10.5.0.6

容器得到10.5.0.2和10.5.0.3,而不是5和6。


aux-address用于手动通知ipam-driver网络中已在使用的IP地址
Hamza

将静态IP分配给服务后,如何使用'docker compose up -d --scale container-name = 3'扩展这些容器中的任何一个?
yash

Answers:


121

请注意,除非您做的事情允许容器网络从外部路由到内部(例如,macvlan),否则我不建议在Docker中为容器使用固定IP。DNS已经在容器网络内部用于服务发现,并支持容器扩展。在容器网络外部,应使用主机上的裸露端口。有了免责声明,这是您想要的撰写​​文件:

version: '2'

services:
  mysql:
    container_name: mysql
    image: mysql:latest
    restart: always
    environment:
      - MYSQL_ROOT_PASSWORD=root
    ports:
     - "3306:3306"
    networks:
      vpcbr:
        ipv4_address: 10.5.0.5

  apigw-tomcat:
    container_name: apigw-tomcat
    build: tomcat/.
    ports:
     - "8080:8080"
     - "8009:8009"
    networks:
      vpcbr:
        ipv4_address: 10.5.0.6
    depends_on:
     - mysql

networks:
  vpcbr:
    driver: bridge
    ipam:
     config:
       - subnet: 10.5.0.0/16
         gateway: 10.5.0.1

2
您一定错过了定义用户配置子网的撰写文件的下半部分。
BMitch

11
您如何在版本3中做到这一点?
Atr_Max

4
@Atr_Max目前,您不能:“注意:目前仅支持版本2的其他IPAM配置,例如网关。” docs.docker.com/compose/compose-file/#ipam
BMitch

2
@Ryan静态IP不会提高安全性,您仍然需要打开相同的连接,并且容器仍将在仅公开所需内容的命名空间网络内运行。静态IP会降低灵活性,包括无法滚动滚动更新应用程序,不能在群集模式下工作以及使容器的配置更难在环境或类似容器之间复制的能力。对于链接的问题,您只需要在容器内侦听0.0.0.0。
BMitch

1
@alvery我有同样的问题,您需要使用--force-recreate选项,因为docker-compose不会在已创建的网络上应用配置(可能是一个错误)
HugoPoi

21

我在使用具有自定义名称的环境变量时遇到了一些困难(不适用于KAPACITOR_BASE_URL和KAPACITOR_ALERTS_ENDPOINT的容器名称/端口约定)。如果在这种情况下提供服务名称,则不会将IP解析为

KAPACITOR_BASE_URL:  http://kapacitor:9092

在上面http://[**kapacitor**]:9092不会解决http://172.20.0.2:9092

我使用子网划分配置解决了静态IP问题。

version: "3.3"

networks:
  frontend:
    ipam:
      config:
        - subnet: 172.20.0.0/24
services:
    db:
        image: postgres:9.4.4
        networks:
            frontend:
                ipv4_address: 172.20.0.5
        ports:
            - "5432:5432"
        volumes:
            - postgres_data:/var/lib/postgresql/data

    redis:
        image: redis:latest
        networks:
            frontend:
                ipv4_address: 172.20.0.6
        ports:
            - "6379"

    influxdb:
        image: influxdb:latest
        ports:
            - "8086:8086"
            - "8083:8083"
        volumes:
            - ../influxdb/influxdb.conf:/etc/influxdb/influxdb.conf
            - ../influxdb/inxdb:/var/lib/influxdb
        networks:
            frontend:
                ipv4_address: 172.20.0.4
        environment:
          INFLUXDB_HTTP_AUTH_ENABLED: "false"
          INFLUXDB_ADMIN_ENABLED: "true"
          INFLUXDB_USERNAME: "db_username"
          INFLUXDB_PASSWORD: "12345678"
          INFLUXDB_DB: db_customers

    kapacitor:
        image: kapacitor:latest
        ports: 
            - "9092:9092"
        networks:
            frontend:
                ipv4_address: 172.20.0.2
        depends_on:
            - influxdb
        volumes:
            - ../kapacitor/kapacitor.conf:/etc/kapacitor/kapacitor.conf
            - ../kapacitor/kapdb:/var/lib/kapacitor
        environment:
          KAPACITOR_INFLUXDB_0_URLS_0: http://influxdb:8086

    web:
        build: .
        environment:
          RAILS_ENV: $RAILS_ENV
        command: bundle exec rails s -b 0.0.0.0
        ports:
            - "3000:3000"
        networks:
            frontend:
                ipv4_address: 172.20.0.3
        links:
            - db
            - kapacitor
        depends_on:
            - db
        volumes:
            - .:/var/app/current
        environment:
          DATABASE_URL: postgres://postgres@db
          DATABASE_USERNAME: postgres
          DATABASE_PASSWORD: postgres
          INFLUX_URL: http://influxdb:8086
          INFLUX_USER: db_username
          INFLUX_PWD: 12345678
          KAPACITOR_BASE_URL:  http://172.20.0.2:9092
          KAPACITOR_ALERTS_ENDPOINT: http://172.20.0.3:3000

volumes:
  postgres_data:
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.