5 - Run docker compose
Run all containers
The whole setup then can be started (in this directory, /deployment/standalone/
):
docker-compose up -d --build
Note: The initial start of the HCMS might take a while (especially if there is a large number of assets to be downloaded) and the hcms-client
container might give up waiting and stop. In that case, simply start it by repeating the command:
docker-compose up -d
Please note that on some Linux systems, the command is not docker-compose
but docker compose
(the standalone binary has been replaced with a plugin). Otherwise, all commands and arguments for docker-compose
should be the same.
Other useful commands
Logs can be displayed by using docker-compose logs
:
docker-compose logs -f --tail=200
Stopping and starting:
docker-compose stop
docker-compose start
Stop, destroy all containers and delete all generic volumes (thus cleaning all local caches):
docker-compose down -v