# Running Ontopic Studio

# Start Ontopic Studio with Docker-compose

Run

docker compose -f docker-compose.yml -f tutorial/docker-compose-tutorial.yml pull && docker compose -f docker-compose.yml -f tutorial/docker-compose-tutorial.yml up

If the system complains about missing permissions, use sudo:

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 Studio and its dependencies from the Docker and Gitlab servers to your local machine.

This will start Ontopic Studio 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.

docker compose -f docker-compose.yml -f tutorial/docker-compose-tutorial.yml pull && docker compose -f docker-compose.yml -f tutorial/docker-compose-tutorial.yml up

# Stop Ontopic Studio

Run to stop Ontopic Studio without removing your projects data the command:

docker compose -f docker-compose.yml -f tutorial/docker-compose-tutorial.yml down

If the system complains about missing permissions, use sudo:

sudo docker compose -f docker-compose.yml -f tutorial/docker-compose-tutorial.yml down