0

我正在尝试使以下内容docker-compose.yaml在我的QNAP容器站上运行。

以下部分正在工作,但在“重新启动:除非停止”之后,混乱开始了。

version: '3'

services:
  pihole:
    container_name: pihole
    image: pihole/pihole:latest
    ports:
      - "65003:53/tcp"
      - "65002:53/udp"
      - "65001:67/udp"
      - "65000:80/tcp"
    environment:
      TZ: 'Berlin'
      WEBPASSWORD: 'password'
    # Volumes store your data between container upgrades
    volumes:
      - './etc-pihole/:/etc/pihole/'
      - './etc-dnsmasq.d/:/etc/dnsmasq.d/'
    # Recommended but not required (DHCP needs NET_ADMIN)
    #   https://github.com/pi-hole/docker-pi-hole#note-on-capabilities
    cap_add:
      - NET_ADMIN
    restart: unless-stopped
      qnet_dhcp:
    image: alpine
    command: ifconfig eth0
    networks:
      - qnet-dhcp
  qnet_static:
    image: alpine
    command: ifconfig eth0
    networks:
      qnet-static:
        ipv4_address: 192.168.178.2
networks:
  qnet-dhcp:
    driver: qnet
    ipam:
      driver: qnet
      options:
        iface: "eth0"
  qnet-static:
    driver: qnet
    ipam:
      driver: qnet
      options:
        iface: "eth0"
      config:
        - subnet: 192.168.178.0/24
          gateway: 192.168.178.1

我直接从 QNAP https://qnap-dev.github.io/container-station-api/qnet.html获得了网络信息,并尝试使用http://www.yamllint.com/进行验证,但它没有一起工作。 错误 行 24

无效

4

1 回答 1

0

您的服务名称之一未正确缩进。

ipam此外,您为版本 3文件提供了无效配置。您只能根据文档options提供版本 2 。

为简洁起见,我将截断文件。

# you need file version 2 in order to use options in ipam
# the file you copied it from is also using version 2
version: '2'

services:
  pihole:
    ...
  # this one (qnet_dhcp) is the name of another service. 
  # In your original code the indention is incorrect.
  # It should be aligned with the other services.
  qnet_dhcp:
    ...
  qnet_static:
    ...

networks:
  qnet-dhcp:
    ...
    ipam:
      ...
      # as mentioned above,
      # this is only valid in version 2
      options:
        ...
于 2021-09-18T12:36:49.573 回答