From 3d0f764320a547d08abf673dcef3e6d95afccb72 Mon Sep 17 00:00:00 2001
From: vrifox <vrifox@vrifox.cc>
Date: Fri, 5 May 2023 19:12:56 +0200
Subject: [PATCH] add network and container names

---
 docker-compose.yml | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/docker-compose.yml b/docker-compose.yml
index 6eff372..890f78c 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -2,6 +2,7 @@ version: "3.7"
 services:
   web:
     image: code.cozy.town/codeforleipzig/stadtratmonitor/develop:latest
+    container_name: stadtratmonitor-web
     volumes:
       - .:/app/
     ports:
@@ -10,7 +11,10 @@ services:
       - ELASTICSEARCH_URL=${ELASTICSEARCH_URL:-http://elasticsearch:9200}
       - APPLICATION_HOST=${APPLICATION_HOST:-localhost}
       - SHARED_IMPORT_SECRET=$SHARED_IMPORT_SECRET
+    networks:
+      - stadtratmonitor
   elasticsearch:
+    container_name: stadtratmonitor-elasticsearch
     user: elasticsearch
     build: ./docker/elasticsearch
     environment:
@@ -23,10 +27,15 @@ services:
       - ${ESDATA:-esdata}:/usr/share/elasticsearch/data //read, write and execute
       - ./docker/elasticsearch/elasticsearch.yml:/usr/share/elasticsearch/config/elasticsearch.yml
     command: sh -c "/usr/share/elasticsearch/bin/elasticsearch"
+    networks:
+      - stadtratmonitor
   elastichq:
+    container_name: stadtratmonitor-elastichq
     image: elastichq/elasticsearch-hq
     ports:
       - "127.0.0.1:5000:5000"
 
 volumes:
   esdata:
+networks:
+  stadtratmonitor:
\ No newline at end of file