This is an automated email from the ASF dual-hosted git repository.

marat pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-karavan.git

commit 99c1461b96a7759ed0dd0fa612d02f8b0b7b3609
Author: Marat Gubaidullin <ma...@talismancloud.io>
AuthorDate: Wed Jul 3 16:20:11 2024 -0400

    Devservices
---
 .../docker/devservices.docker-compose.yaml         | 17 ++++++++
 .../src/main/resources/services/devservices.yaml   | 49 ----------------------
 2 files changed, 17 insertions(+), 49 deletions(-)

diff --git 
a/karavan-app/src/main/resources/configuration/docker/devservices.docker-compose.yaml
 
b/karavan-app/src/main/resources/configuration/docker/devservices.docker-compose.yaml
index 3de24f53..5ae05c44 100644
--- 
a/karavan-app/src/main/resources/configuration/docker/devservices.docker-compose.yaml
+++ 
b/karavan-app/src/main/resources/configuration/docker/devservices.docker-compose.yaml
@@ -19,6 +19,23 @@ services:
     ports:
       - 9092:9092
 
+  postgres:
+    container_name: postgres
+    image: postgres:16.2
+    restart: always
+    environment:
+      - POSTGRES_USER=postgres
+      - POSTGRES_PASSWORD=postgres
+    ports:
+      - '5432:5432'
+
+  adminer:
+    container_name: adminer
+    image: adminer:4.8.1-standalone
+    restart: always
+    ports:
+      - 8080:8080
+
   greenmail:
     container_name: greenmail
     image: greenmail/standalone:2.0.0
diff --git a/karavan-app/src/main/resources/services/devservices.yaml 
b/karavan-app/src/main/resources/services/devservices.yaml
deleted file mode 100644
index 5ae05c44..00000000
--- a/karavan-app/src/main/resources/services/devservices.yaml
+++ /dev/null
@@ -1,49 +0,0 @@
-version: '3.8'
-
-services:
-
-  artemis:
-    container_name: artemis
-    image: quay.io/artemiscloud/activemq-artemis-broker:artemis.2.32.0
-    ports:
-      - "8161:8161"
-      - "61616:61616"
-      - "5672:5672"
-    environment:
-      AMQ_USER: artemis
-      AMQ_PASSWORD: artemis
-
-  kafka:
-    container_name: kafka
-    image: apache/kafka:3.7.0
-    ports:
-      - 9092:9092
-
-  postgres:
-    container_name: postgres
-    image: postgres:16.2
-    restart: always
-    environment:
-      - POSTGRES_USER=postgres
-      - POSTGRES_PASSWORD=postgres
-    ports:
-      - '5432:5432'
-
-  adminer:
-    container_name: adminer
-    image: adminer:4.8.1-standalone
-    restart: always
-    ports:
-      - 8080:8080
-
-  greenmail:
-    container_name: greenmail
-    image: greenmail/standalone:2.0.0
-    ports:
-      - "3025:3025"
-      - "3110:3110"
-      - "3143:3143"
-      - "3465:3465"
-      - "3993:3993"
-      - "3995:3995"
-      - "9980:8080"
\ No newline at end of file

Reply via email to