无法从主机访问Docker Apache容器

时间:2020-10-03 15:23:24

标签: windows apache docker docker-compose

我正在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。

0 个答案:

没有答案