mongodb statistics
This commit is contained in:
@@ -2,7 +2,9 @@ name: infinimotion
|
|||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
postgres:
|
postgres:
|
||||||
|
mongo:
|
||||||
redpanda:
|
redpanda:
|
||||||
|
pgadmin:
|
||||||
|
|
||||||
services:
|
services:
|
||||||
frontend:
|
frontend:
|
||||||
@@ -12,6 +14,7 @@ services:
|
|||||||
- backend
|
- backend
|
||||||
ports:
|
ports:
|
||||||
- "127.0.0.1:7200:7200"
|
- "127.0.0.1:7200:7200"
|
||||||
|
|
||||||
backend:
|
backend:
|
||||||
image: git.infinimotion.de/infinimotion/backend:latest
|
image: git.infinimotion.de/infinimotion/backend:latest
|
||||||
container_name: backend
|
container_name: backend
|
||||||
@@ -19,12 +22,14 @@ services:
|
|||||||
- persistence
|
- persistence
|
||||||
ports:
|
ports:
|
||||||
- "127.0.0.1:7080:7080"
|
- "127.0.0.1:7080:7080"
|
||||||
|
|
||||||
persistence:
|
persistence:
|
||||||
image: git.infinimotion.de/infinimotion/persistence:latest
|
image: git.infinimotion.de/infinimotion/persistence:latest
|
||||||
container_name: persistence
|
container_name: persistence
|
||||||
depends_on:
|
depends_on:
|
||||||
- redpanda
|
- redpanda
|
||||||
- postgres
|
- postgres
|
||||||
|
|
||||||
postgres:
|
postgres:
|
||||||
image: postgres:18.0-trixie
|
image: postgres:18.0-trixie
|
||||||
container_name: postgres
|
container_name: postgres
|
||||||
@@ -36,6 +41,26 @@ services:
|
|||||||
- postgres:/var/lib/postgresql
|
- postgres:/var/lib/postgresql
|
||||||
ports:
|
ports:
|
||||||
- "0.0.0.0:5432:5432"
|
- "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:
|
redpanda:
|
||||||
image: docker.redpanda.com/redpandadata/redpanda:v25.2.9
|
image: docker.redpanda.com/redpandadata/redpanda:v25.2.9
|
||||||
container_name: redpanda
|
container_name: redpanda
|
||||||
@@ -70,6 +95,7 @@ services:
|
|||||||
#- 18082:18082
|
#- 18082:18082
|
||||||
- "127.0.0.1:19092:19092"
|
- "127.0.0.1:19092:19092"
|
||||||
#- 19644:9644
|
#- 19644:9644
|
||||||
|
|
||||||
console:
|
console:
|
||||||
container_name: redpanda-console
|
container_name: redpanda-console
|
||||||
image: docker.redpanda.com/redpandadata/console:v3.2.2
|
image: docker.redpanda.com/redpandadata/console:v3.2.2
|
||||||
|
|||||||
Reference in New Issue
Block a user