1. ホーム
  2. パイソン

[解決済み】Docker "ERROR: could not find an available, non-overlapping IPv4 address pool among the defaults to assign to the network".

2022-04-04 10:29:17

質問

ディレクトリがあります。 apkmirror-scraper-compose を以下のような構造で作成します。

.
├── docker-compose.yml
├── privoxy
│   ├── config
│   └── Dockerfile
├── scraper
│   ├── Dockerfile
│   ├── newnym.py
│   └── requirements.txt
└── tor
    └── Dockerfile

次のように実行しようとしています。 docker-compose.yml :

version: '3'

services:
  privoxy:
    build: ./privoxy
    ports:
      - "8118:8118"
    links:
      - tor

  tor:
    build:
      context: ./tor
      args:
        password: ""
    ports:
      - "9050:9050"
      - "9051:9051"

  scraper:
    build: ./scraper
    links:
      - tor
      - privoxy

ここで Dockerfile に対して tor

FROM alpine:latest
EXPOSE 9050 9051
ARG password
RUN apk --update add tor
RUN echo "ControlPort 9051" >> /etc/tor/torrc
RUN echo "HashedControlPassword $(tor --quiet --hash-password $password)" >> /etc/tor/torrc
CMD ["tor"]

そのため privoxy

FROM alpine:latest
EXPOSE 8118
RUN apk --update add privoxy
COPY config /etc/privoxy/config
CMD ["privoxy", "--no-daemon"]

ここで config は2行で構成されています。

listen-address 0.0.0.0:8118
forward-socks5 / tor:9050 .

と、その Dockerfile に対して scraper

FROM python:2.7-alpine
ADD . /scraper
WORKDIR /scraper
RUN pip install -r requirements.txt
CMD ["python", "newnym.py"]

ここで requirements.txt は1つの行を含む requests . 最後に、プログラム newnym.py は、Torを使ったIPアドレスの変更がうまくいっているかどうかを簡単にテストするためのものです。

from time import sleep, time

import requests as req
import telnetlib


def get_ip():
    IPECHO_ENDPOINT = 'http://ipecho.net/plain'
    HTTP_PROXY = 'http://privoxy:8118'
    return req.get(IPECHO_ENDPOINT, proxies={'http': HTTP_PROXY}).text


def request_ip_change():
    tn = telnetlib.Telnet('tor', 9051)
    tn.read_until("Escape character is '^]'.", 2)
    tn.write('AUTHENTICATE ""\r\n')
    tn.read_until("250 OK", 2)
    tn.write("signal NEWNYM\r\n")
    tn.read_until("250 OK", 2)
    tn.write("quit\r\n")
    tn.close()


if __name__ == '__main__':
    dts = []
    try:
        while True:
            ip = get_ip()
            t0 = time()
            request_ip_change()
            while True:
                new_ip = get_ip()
                if new_ip == ip:
                    sleep(1)
                else:
                    break
            dt = time() - t0
            dts.append(dt)
            print("{} -> {} in ~{}s".format(ip, new_ip, int(dt)))
    except KeyboardInterrupt:
        print("Stopping...")
        print("Average: {}".format(sum(dts) / len(dts)))

docker-compose build は正常にビルドされますが、もし docker-compose up というエラーメッセージが表示されます。

Creating network "apkmirrorscrapercompose_default" with the default driver
ERROR: could not find an available, non-overlapping IPv4 address pool among the defaults to assign to the network

このエラーメッセージに関するヘルプを検索してみましたが、見つかりませんでした。このエラーは何が原因なのでしょうか?

解決方法を教えてください。

以下 ピーター・ハウゲ 's コメント を実行すると docker network ls 次のように(他の行も含めて)表示されました。

NETWORK ID          NAME                                    DRIVER              SCOPE
dc6a83d13f44        bridge                                  bridge              local
ea98225c7754        docker_gwbridge                         bridge              local
107dcd8aa889        host                                    host                local

の行は NAMEDRIVER として host は、彼が言っている "networks already created on your host" のことだと思われます。そこで、次のように https://gist.github.com/bastman/5b57ddb3c11942094f8d0a97d461b430 というコマンドを実行しました。

docker network rm $(docker network ls | grep "bridge" | awk '/ / { print $1 }')

現在 docker-compose up が動作します(ただし newnym.py はエラーを発生させます)。