From 36bef37f14ba79c7bb3ad2af41edb15d24006f3d Mon Sep 17 00:00:00 2001 From: David Rotermund Date: Sat, 13 Jul 2024 04:03:16 +0200 Subject: [PATCH] Delete ubuntu/overleafmongo directory --- ubuntu/overleafmongo/.env | 1 - ubuntu/overleafmongo/compose.yaml | 31 ------------------------------- 2 files changed, 32 deletions(-) delete mode 100644 ubuntu/overleafmongo/.env delete mode 100644 ubuntu/overleafmongo/compose.yaml diff --git a/ubuntu/overleafmongo/.env b/ubuntu/overleafmongo/.env deleted file mode 100644 index 8b13789..0000000 --- a/ubuntu/overleafmongo/.env +++ /dev/null @@ -1 +0,0 @@ - diff --git a/ubuntu/overleafmongo/compose.yaml b/ubuntu/overleafmongo/compose.yaml deleted file mode 100644 index e33ddb1..0000000 --- a/ubuntu/overleafmongo/compose.yaml +++ /dev/null @@ -1,31 +0,0 @@ -# docker network create overleaf-network -services: - overleafmongo: - image: "mongo:5.0" - container_name: overleafmongo - hostname: overleafmongo - restart: always - healthcheck: - test: "mongosh --quiet --eval 'rs.hello().setName ? rs.hello().setName : rs.initiate({_id: \"overleaf\",members:[{_id: 0, host:\"overleafmongo:27017\"}]})'" - interval: 10s - timeout: 10s - retries: 5 - command: "--replSet overleaf" - expose: - - 27017 - volumes: - - overleaf_mongo:/data/db - - overleaf_mongo_cdb:/data/configdb - networks: - - overleaf-network - extra_hosts: - - "mongo:127.0.0.1" - - "overleafmongo:127.0.0.1" - -volumes: - overleaf_mongo: - overleaf_mongo_cdb: - -networks: - overleaf-network: - external: true