我正在Windows 10上使用Docker Toolbox。
我有这个docker-compose.yml
:
version: "3"
services:
web:
build: ./images/web
ports:
- "80:80"
tty: true
“网络”服务具有以下Dockerfile
:
FROM ubuntu:latest
RUN apt-get update
RUN apt-get -y upgrade
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y apache2 && apt-get clean
CMD ["apachectl", "-D", "FOREGROUND"]
运行docker-compose up -d
时,无法使用http://localhost
从主机访问容器,也无法显示docker inspect
显示的IP。