How to rebuild docker container in docker-compose.yml?

前端 未结 10 2125
闹比i
闹比i 2021-01-29 17:14

There are scope of services which defined in docker-compose.yml. These service have been started. I need to rebuild only one of these and start it without up other services. I r

10条回答
  •  误落风尘
    2021-01-29 18:02

    With docker-compose 1.19 up

    docker-compose up --build --force-recreate --no-deps [-d] [..]
    

    Without one or more service_name arguments all images will be built if missing and all containers will be recreated.

    From the help menu

    Options:
        -d, --detach        Detached mode: Run containers in the background,
                            print new container names. Incompatible with
                            --abort-on-container-exit.
        --no-deps           Don't start linked services.
        --force-recreate    Recreate containers even if their configuration
                            and image haven't changed.
        --build             Build images before starting containers.
    

    Without cache

    To force a rebuild to ignore cached layers, we have to first build a new image

    docker-compose build --no-cache [..]
    

    From the help menu

    Options:
        --force-rm              Always remove intermediate containers.
        -m, --memory MEM        Set memory limit for the build container.
        --no-cache              Do not use cache when building the image.
        --no-rm                 Do not remove intermediate containers after a successful build.
    

    Then recreate the container

    docker-compose up --force-recreate --no-deps [-d] [..]
    

提交回复
热议问题