阻止 docker 从缓存中创建图像
Prevent docker from creating image from cache
我遇到的问题是我进行了一些配置更改。我有一个 fig.yml 文件来启动我所有的 docker 图像。所以我更改了必要的配置文件,但是当我这样做时 ./fig up 它只是重新创建每个 docker 图像。您可以使用什么命令 docker 从 fig.yml 文件中重建无缓存图像?任何帮助将不胜感激。
我想您可能正在寻找 fig build
。默认情况下 fig up
将重建容器,但不重建图像。这已经 source of confusion 有一段时间了。
If you change a service's Dockerfile or the contents of its build directory, you can run fig build
to rebuild [the image]. (source)
我遇到的问题是我进行了一些配置更改。我有一个 fig.yml 文件来启动我所有的 docker 图像。所以我更改了必要的配置文件,但是当我这样做时 ./fig up 它只是重新创建每个 docker 图像。您可以使用什么命令 docker 从 fig.yml 文件中重建无缓存图像?任何帮助将不胜感激。
我想您可能正在寻找 fig build
。默认情况下 fig up
将重建容器,但不重建图像。这已经 source of confusion 有一段时间了。
If you change a service's Dockerfile or the contents of its build directory, you can run
fig build
to rebuild [the image]. (source)