# Running Ontopic Suite
# Start Ontopic Suite with Docker-compose
Run
sudo docker compose -f docker-compose.yml -f tutorial/docker-compose-tutorial.yml pull && sudo docker compose -f docker-compose.yml -f tutorial/docker-compose-tutorial.yml up
This command sequence will take some minutes the first time you run it, since the system transfers Ontopic Suite and its dependencies from the Docker and Gitlab servers to your local machine.
This will start Ontopic Suite on your computer as a web based application. You can access the application from a browser at http://localhost:8081 (opens new window) . The default user and the password are test .
# Run in detach mode
In the default mode, you see all the logs from all the containers. In detached mode (-d), Compose exits after starting the containers, but the containers continue to run in the background.
sudo docker compose -f docker-compose.yml -f tutorial/docker-compose-tutorial.yml up -d
# Stop Ontopic Suite
Run to stop Ontopic Suite without removing your projects data the command:
sudo docker compose -f docker-compose.yml -f tutorial/docker-compose-tutorial.yml down