UnixHTTPConnectionPool에서 "docker-compose up" 시간 초과
docker-compose up 실행 시, 특히 상당수의 서비스/컨테이너에 대해 , 사용자는 다음과 같은 상황을 겪을 수 있습니다 오류:
ERROR: for testdb-data UnixHTTPConnectionPool(host='localhost', port=None): Read timed out. (read timeout=60) An HTTP request took too long to complete. Retry with --verbose to obtain debug information. If you encounter this issue regularly because of slow network conditions, consider setting COMPOSE_HTTP_TIMEOUT to a higher value (current value: 60).
가능한 해결 방법:
이 문제를 해결하고 docker-compose up의 성공적인 실행을 촉진하려면 다음 해결 방법 구현을 고려하십시오.
export DOCKER_CLIENT_TIMEOUT=120 export COMPOSE_HTTP_TIMEOUT=120
다음 해결 방법에 유의하세요. 문제를 영구적으로 해결하지 마십시오. 더 자세한 내용은 관련 스레드를 참조하세요. GitHub:
위 내용은 UnixHTTPConnectionPool에서 "docker-compose up" 시간이 초과되는 이유는 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!