add projectService

This commit is contained in:
2026-05-02 00:46:47 +03:00
parent 415ab4faf0
commit b2b066e0d3
22 changed files with 480 additions and 9 deletions
+15
View File
@@ -20,6 +20,9 @@ services:
jambotron-mongo:
image: mongo:6.0
container_name: jambotron-mongo
environment:
- MONGO_INITDB_ROOT_USERNAME=root
- MONGO_INITDB_ROOT_PASSWORD=password
ports:
- "27017:27017"
volumes:
@@ -27,6 +30,18 @@ services:
networks:
- jambotron-net
mongo-express:
image: mongo-express
restart: always
ports:
- "8083:8081"
environment:
ME_CONFIG_MONGODB_URL: mongodb://root:password@mongodb:27017/
ME_CONFIG_BASICAUTH_USERNAME: admin
ME_CONFIG_BASICAUTH_PASSWORD: pass
networks:
- jambotron-net
# UI для управления БД (Postgres)[cite: 3]
jambo-pgadmin:
image: dpage/pgadmin4