Skip to main content
Skip table of contents

5 - Run docker compose

Run all containers

The whole setup then can be started (in this directory, /deployment/standalone/):

CODE
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:

CODE
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:

CODE
docker-compose logs -f --tail=200

Stopping and starting:

CODE
docker-compose stop
docker-compose start

Stop, destroy all containers and delete all generic volumes (thus cleaning all local caches):

CODE
docker-compose down -v
JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.