Docker 正在兑现,不确定但项目的新副本未启动
Docker Cashing, Not sure but new copy of project not starting
我创建了这个项目,并且不小心在 Docker 文件中有 --host-0.0.0.0
。
我也改了--host=0.0.0.0
.
但是每次我尝试做 docker-compose up
我都会收到这个错误
The "--host-0.0.0.0" option does not exist.
它缓存在某个地方还是什么地方?
您需要重建图像。默认情况下,Compose 不会检测图像应为 re-built
引用自https://docs.docker.com/compose/reference/build/
If you change a service’s Dockerfile or the contents of its build
directory, run docker-compose build to rebuild it.
如果你想强制重建,使用
docker-compose up --build
我创建了这个项目,并且不小心在 Docker 文件中有 --host-0.0.0.0
。
我也改了--host=0.0.0.0
.
但是每次我尝试做 docker-compose up
我都会收到这个错误
The "--host-0.0.0.0" option does not exist.
它缓存在某个地方还是什么地方?
您需要重建图像。默认情况下,Compose 不会检测图像应为 re-built
引用自https://docs.docker.com/compose/reference/build/
If you change a service’s Dockerfile or the contents of its build directory, run docker-compose build to rebuild it.
如果你想强制重建,使用
docker-compose up --build