我正在使用Docker For Windows,并且在我的Docker主机上有一组已已构建的映像。当我尝试使用docker-compose up -d
命令启动环境时,经常会遇到不同容器的I / O超时错误。通常,重试会有所帮助,但是我正在尝试使它自动化,并且不能期望重新运行整个管道。
版本:
Docker version 18.09.0, build 4d60db4
docker-compose version 1.23.1, build b02f1306
命令行日志:
C:\workspace\AK_DOCKER_RISK\docker-compose>docker-compose up -d
Creating risk-svc ...
Creating risk-svc ... done
Creating risk-prc ...
Creating risk-web ...
Creating risk-web ... error
ERROR: for risk-web b'i/o timeout'
Creating risk-prc ... done
ERROR: for web b'i/o timeout'
Encountered errors while bringing up the project.
随机观察到错误,有时是svc,web或prc。
有人可以解释为什么发生此错误,更重要的是,如何解决此问题?
这是我的 docker-compose.yml 文件:
version: '3'
services:
web:
image: iis-core-web:1910.252
build:
context: .
dockerfile: ./web/Dockerfile
container_name: risk-web
ports:
- "9111:8080"
tty: true
links:
- svc
volumes:
- ../RiskLogs/web:c:/RiskLogs
svc:
image: iis-core-svc:1910.252
build:
context: .
dockerfile: ./svc/Dockerfile
container_name: risk-svc
ports:
- "9112:8080"
tty: true
volumes:
- ../RiskLogs/svc:c:/RiskLogs
prc:
image: iis-core-prc:1910.252
build:
context: .
dockerfile: ./prc/Dockerfile
container_name: risk-prc
tty: true
links:
- svc
volumes:
- ../RiskLogs/prc:c:/RiskLogs
# prevent creation of new network and use existing nat
networks:
default:
external:
name: nat