Docker compose not building because of an error that has been removed

前端 未结 1 1420
栀梦
栀梦 2021-01-28 08:28

When I use the command docker-compose up in the directory that has the Docker compose Dockerfile, I am hit with the error below. The error was that in acp times app

1条回答
  •  囚心锁ツ
    2021-01-28 09:13

    Like @avigil said you need to rebuild your image in order to update it.

    If you want to do it in one command you can type:

    docker-compose up --build

    If you really want to be sure that your containers are recreated run the following command:

    docker-compose up --build --force-recreate

    0 讨论(0)
提交回复
热议问题