# Running Ontopic Suite

# Docker-compose

# Start Ontopic Suite

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

# Kubernetes

To start Ontopic Suite, install its chart:

helm install ontopic-suite ontopic/ontopic-suite -f values.yaml

After a few minutes, Ontopic Suite will be available at <YOUR_DOMAIN_NAME> on port 8080 (if using K3D), port 80 (no TLS), or port 443 (TLS). The default username and password are both test.

To stop Ontopic Suite, uninstall it:

helm uninstall ontopic-suite