# Download Docker You have to download docker on your system (including compose plugin). F.e. on ubuntu `$ snap install docker` # Create compose file Create a file called `docker-compose.yml` and paste the content: ``` name: supabase services: dashboard: container_name: mensa-dashboard image: registry.gitlab.com/brausjonas/mensaappdashboard:0.3 restart: unless-stopped ports: - 8051:8051 ``` open terminal, locate the docker-compose.yml file and run `docker compose up -d` or `docker-compose up -d` depending on your compose plugin verison. (You might have to run as sudo)