From f7d0fa1c5d812b03cf8d36e12502e6796b16e599 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Pokorn=C3=BD?= <xpokorn8@fi.muni.cz> Date: Thu, 27 Apr 2023 17:29:06 +0200 Subject: [PATCH] Removing podman --- README.md | 16 ++++------------ application/podman-compose.yml | 30 ------------------------------ 2 files changed, 4 insertions(+), 42 deletions(-) delete mode 100644 application/podman-compose.yml diff --git a/README.md b/README.md index fefea724..6c904adb 100644 --- a/README.md +++ b/README.md @@ -26,14 +26,6 @@ docker-compose up ``` -- **Running the modules using podman-compose**: - ~~~console - cd ./application - mvn clean install - podman-compose build --parallel - podman-compose up - ~~~ - - **Running the modules using docker**: ~~~console sudo docker run -d -p 5001:5001 xpokorn8/sprachschulsystem:certificate && @@ -58,16 +50,16 @@ The credentials are:<br /> In Grafana interface, you can import various dashboards. Our team used and tested https://grafana.com/grafana/dashboards/3662-prometheus-2-0-overview/ board.<br /> To import the dashboard, follow steps bellow: - + Select **+** and **Import** in left menu of the Grafana interface. - + Insert **3662** into **Import via grafana.com** and click **Load**. - + Select **Prometheus** in the **prometheus** combo box and click **Import**. - + The dashboard with metrics data will be displayed. # Project Description diff --git a/application/podman-compose.yml b/application/podman-compose.yml deleted file mode 100644 index 41a6a0d3..00000000 --- a/application/podman-compose.yml +++ /dev/null @@ -1,30 +0,0 @@ -version: '3' - -services: - certificate: - build: ./module-certificate - container_name: certificate - image: xpokorn8/sprachschulsystem:certificate - ports: - - "5001:5001" - - exercise: - build: ./module-exercise - container_name: exercise - image: xpokorn8/sprachschulsystem:exercise - ports: - - "5002:5002" - - language-school: - build: ./module-language-school - container_name: language-school - image: xpokorn8/sprachschulsystem:language-school - ports: - - "5000:5000" - - mail: - build: ./module-mail - container_name: mail - image: xpokorn8/sprachschulsystem:mail - ports: - - "5003:5003" \ No newline at end of file -- GitLab