mongodb statistics

This commit is contained in:
2025-11-14 01:19:30 +01:00
parent fcf6283ed5
commit edc4f3ea2f

View File

@@ -2,7 +2,9 @@ name: infinimotion
volumes:
postgres:
mongo:
redpanda:
pgadmin:
services:
frontend:
@@ -12,6 +14,7 @@ services:
- backend
ports:
- "127.0.0.1:7200:7200"
backend:
image: git.infinimotion.de/infinimotion/backend:latest
container_name: backend
@@ -19,12 +22,14 @@ services:
- persistence
ports:
- "127.0.0.1:7080:7080"
persistence:
image: git.infinimotion.de/infinimotion/persistence:latest
container_name: persistence
depends_on:
- redpanda
- postgres
postgres:
image: postgres:18.0-trixie
container_name: postgres
@@ -36,6 +41,26 @@ services:
- postgres:/var/lib/postgresql
ports:
- "0.0.0.0:5432:5432"
mongo:
image: mongo
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: a552855c0d842e90895121cf614c31f950086cab
volumes:
- mongo:/data/db
ports:
- "0.0.0.0:27017:27017"
mongo-express:
image: mongo-express
environment:
ME_CONFIG_SITE_BASEURL: /mongo/
ME_CONFIG_MONGODB_URL: mongodb://root:a552855c0d842e90895121cf614c31f950086cab@mongo:27017/
ME_CONFIG_BASICAUTH_ENABLED: true
ME_CONFIG_BASICAUTH_USERNAME: root
ME_CONFIG_BASICAUTH_PASSWORD: a552855c0d842e90895121cf614c31f950086cab
redpanda:
image: docker.redpanda.com/redpandadata/redpanda:v25.2.9
container_name: redpanda
@@ -70,6 +95,7 @@ services:
#- 18082:18082
- "127.0.0.1:19092:19092"
#- 19644:9644
console:
container_name: redpanda-console
image: docker.redpanda.com/redpandadata/console:v3.2.2