From c3c0f9ab98b1e7be8f120aceb2300a593b697c01 Mon Sep 17 00:00:00 2001 From: gsd Date: Mon, 9 Feb 2026 22:25:20 +0300 Subject: [PATCH] ci start --- docker-compose.example.yaml | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/docker-compose.example.yaml b/docker-compose.example.yaml index 180e2b3..a7f95f9 100644 --- a/docker-compose.example.yaml +++ b/docker-compose.example.yaml @@ -6,6 +6,11 @@ services: - 27017:27017 volumes: - ./testenv/mongodb:/data/db + deploy: + resources: + limits: + cpus: "4" + memory: 4096M mongoExpress: image: docker.pblr-nyk.pro/mongo-express @@ -16,6 +21,11 @@ services: - ME_CONFIG_MONGODB_URL=mongodb://mongodb:27017 depends_on: - mongodb + deploy: + resources: + limits: + cpus: "1" + memory: 1024M meshCenterBackend: build: ./ @@ -25,4 +35,11 @@ services: ports: - 8680:8680 depends_on: - - mongodb \ No newline at end of file + - mongodb + volumes: + - /run/dbus:/run/dbus:ro + deploy: + resources: + limits: + cpus: "1" + memory: 1024M \ No newline at end of file