How to use the Docker-compose up command line
Created
Builds, (re)creates, starts, and attaches to containers for a service.
If you want to force Compose to stop and recreate all containers, use the --force-recreate flag.
Recreate containers
docker-compose up -d --force-recreate
Recreating docker_mysql_1 ... done Recreating docker_redis_1 ... done Recreating docker_php_1 ... done Recreating docker_nginx_1 ... done
Docker-compose up Help Commands and Options
Usage:
docker-compose up [options] [--scale SERVICE=NUM...] [SERVICE...]
Options:
-d, --detachDetached mode: Run containers in the background,print new container names. Incompatible with --abort-on-container-exit.--no-colorProduce monochrome output.--quiet-pullPull without printing progress information--no-depsDon't start linked services.--force-recreateRecreate containers even if their configuration and image haven't changed.--always-recreate-depsRecreate dependent containers. Incompatible with --no-recreate.--no-recreateIf containers already exist, don't recreate hem. Incompatible with --force-recreate and --renew-anon-volumes.--no-buildDon't build an image, even if it's missing.--no-startDon't start the services after creating them.--buildBuild images before starting containers.--abort-on-container-exitStops all containers if any container was stopped. Incompatible with --detach.--attach-dependenciesAttach to dependent containers.-t, --timeout TIMEOUTUse this timeout in seconds for container shutdown when attached or when containers are already running. (default: 10)-V, --renew-anon-volumesRecreate anonymous volumes instead of retrieving data from the previous containers.--remove-orphansRemove containers for services not defined in the Compose file.--exit-code-from SERVICEReturn the exit code of the selected service container. Implies --abort-on-container-exit.--scale SERVICE=NUMScale SERVICE to NUM instances. Overrides the `scale` setting in the Compose file if present.