From 037b9aae377b234fe150b635aa2fba239c65c509 Mon Sep 17 00:00:00 2001 From: ryuupendragon Date: Fri, 15 Aug 2025 16:54:19 +0530 Subject: [PATCH] Update komodo --- komodo/docker-compose.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/komodo/docker-compose.yml b/komodo/docker-compose.yml index 690f0cb..577067e 100644 --- a/komodo/docker-compose.yml +++ b/komodo/docker-compose.yml @@ -1,7 +1,8 @@ services: komodo_postgres: - image: ghcr.io/ferretdb/postgres-documentdb:17-0.104.0 container_name: komodo_postgres + image: ghcr.io/ferretdb/postgres-documentdb:17-0.104.0 + restart: unless-stopped labels: komodo.skip: environment: @@ -10,7 +11,6 @@ services: POSTGRES_PASSWORD: ${POSTGRES_PASSWORD} volumes: - ./postgres:/var/lib/postgresql/data - restart: unless-stopped healthcheck: test: ["CMD-SHELL", "pg_isready -d postgres -U ${POSTGRES_USER}"] start_period: 20s @@ -19,8 +19,9 @@ services: timeout: 5s komodo_ferretdb: - image: ghcr.io/ferretdb/ferretdb:2.3.1 container_name: komodo_ferretdb + image: ghcr.io/ferretdb/ferretdb:2.3.1 + restart: unless-stopped labels: komodo.skip: depends_on: @@ -30,11 +31,11 @@ services: FERRETDB_POSTGRESQL_URL: postgres://${POSTGRES_USER}:${POSTGRES_PASSWORD}@komodo_postgres:5432/postgres volumes: - ./ferretdb:/state - restart: unless-stopped komodo_core: - image: ghcr.io/moghtech/komodo-core:1.18.4 container_name: komodo_core + image: ghcr.io/moghtech/komodo-core:1.18.4 + restart: unless-stopped labels: komodo.skip: depends_on: @@ -49,4 +50,3 @@ services: - ./repo-cache:/repo-cache ports: - 9120:9120 - restart: unless-stopped