Skip to main content

Starting and stopping the server

Starting the server

To start the Agility Manager Server, it is necessary to enter the agilitymanager-server-main directory in the terminal window, where the docker-compose.yml file is located and start the appropriate Docker containers with the docker compose up -d command.

docker compose up -d
info

The -d parameter ensures that the containers run in the background, so that the terminal window is not blocked.

Docker Compose will gradually start the necessary Docker containers and the server will be ready for use. The terminal displays a statement about the successful start of the containers.

Starting Docker containers

Then open the address http://localhost in your internet browser and you can log in to the application Agility Manager.

Stopping the server

To stop the Agility Manager Server, it is necessary to enter the agilitymanager-server-main directory in the terminal window, where the docker-compose.yml file is located, and use the docker compose stop command to disable the relevant Docker containers.

docker compose stop

Docker Compose will shut down the running containers and the server will be shut down. The terminal displays a statement about the successful stopping of the containers.

Stopping Docker containers