From e8a2b9b4098da3be516d775b7b8f3a0a6b71a593 Mon Sep 17 00:00:00 2001 From: Jonas Braus Date: Mon, 17 Mar 2025 17:14:07 +0100 Subject: [PATCH] Edit README.md --- README.md | 29 ++++++++++++++++------------- 1 file changed, 16 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 59adf37..de26704 100644 --- a/README.md +++ b/README.md @@ -1,16 +1,19 @@ -# mensaappbackend +# Download Docker +You have to download docker on your system (including compose plugin). F.e. on ubuntu `$ snap install docker` -A new Flutter project. +# Create compose file +Create a file called `docker-compose.yml` and paste the content: +``` +name: supabase -## Getting Started +services: + dashboard: + container_name: mensa-dashboard + image: registry.gitlab.com/brausjonas/mensaappdashboard:0.3 + restart: unless-stopped + ports: + - 8051:8051 +``` -This project is a starting point for a Flutter application. - -A few resources to get you started if this is your first Flutter project: - -- [Lab: Write your first Flutter app](https://docs.flutter.dev/get-started/codelab) -- [Cookbook: Useful Flutter samples](https://docs.flutter.dev/cookbook) - -For help getting started with Flutter development, view the -[online documentation](https://docs.flutter.dev/), which offers tutorials, -samples, guidance on mobile development, and a full API reference. +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) \ No newline at end of file