From f0a1cb8a0749ba9255ee188c358bd097be804fff Mon Sep 17 00:00:00 2001 From: Tobias Reuen Date: Thu, 20 Aug 2020 21:09:24 +0200 Subject: [PATCH] feat(couchdb): added Windows alternatives to the couchdb helper scripts Added couchdb-init.bat to initialize the couchdb database and couchdb-cleanup.bat to clean it up. --- couchdb/couchdb-cleanup.bat | 2 ++ couchdb/couchdb-init.bat | 2 ++ 2 files changed, 4 insertions(+) create mode 100644 couchdb/couchdb-cleanup.bat create mode 100644 couchdb/couchdb-init.bat diff --git a/couchdb/couchdb-cleanup.bat b/couchdb/couchdb-cleanup.bat new file mode 100644 index 0000000000..838f049c02 --- /dev/null +++ b/couchdb/couchdb-cleanup.bat @@ -0,0 +1,2 @@ +@ECHO OFF +docker-compose down -v --rmi all --remove-orphans diff --git a/couchdb/couchdb-init.bat b/couchdb/couchdb-init.bat new file mode 100644 index 0000000000..428bd946d8 --- /dev/null +++ b/couchdb/couchdb-init.bat @@ -0,0 +1,2 @@ +@ECHO OFF +docker-compose up --build -d