From ae5339cf54fd35f44b8e71b7a09f21d544df3df6 Mon Sep 17 00:00:00 2001 From: Alexander Kobjolke Date: Sat, 9 Nov 2024 23:14:19 +0100 Subject: [PATCH] chore: Provide scripts to start the containers --- .../flexinale-distributed/infrastructure/docker/up | 12 ++++++++++++ flex-training-flexinale/infrastructure/docker/up | 9 +++++++++ 2 files changed, 21 insertions(+) create mode 100644 flex-training-flexinale/flexinale-distributed/infrastructure/docker/up create mode 100644 flex-training-flexinale/infrastructure/docker/up diff --git a/flex-training-flexinale/flexinale-distributed/infrastructure/docker/up b/flex-training-flexinale/flexinale-distributed/infrastructure/docker/up new file mode 100644 index 0000000..9d768f9 --- /dev/null +++ b/flex-training-flexinale/flexinale-distributed/infrastructure/docker/up @@ -0,0 +1,12 @@ +#!/usr/bin/env sh +podman-compose \ + --project-name flexinale-distributed \ + -f ../../../infrastructure/docker/flexinale-network.yml \ + -f ../../../infrastructure/docker/postgres/flexinale-postgres.yml \ + -f ../../../infrastructure/docker/kafka/flexinale-kafka-1-zookeeper.yml \ + -f ../../../infrastructure/docker/kafka/flexinale-kafka-2-kafka.yml \ + -f ../../../infrastructure/docker/kafka/flexinale-kafka-3-kafdrop.yml \ + -f flexinale-distributed-besucherportal.yml \ + -f flexinale-distributed-ticketing.yml \ + -f flexinale-distributed-backoffice.yml \ + up diff --git a/flex-training-flexinale/infrastructure/docker/up b/flex-training-flexinale/infrastructure/docker/up new file mode 100644 index 0000000..783f525 --- /dev/null +++ b/flex-training-flexinale/infrastructure/docker/up @@ -0,0 +1,9 @@ +#!/usr/bin/env sh +podman-compose \ + --project-name flexinale \ + -f flexinale-network.yml \ + -f postgres/flexinale-postgres.yml \ + -f kafka/flexinale-kafka-1-zookeeper.yml \ + -f kafka/flexinale-kafka-2-kafka.yml \ + -f kafka/flexinale-kafka-3-kafdrop.yml \ + up