From 48fef454b8a086cb72261215ff77d1f43da13084 Mon Sep 17 00:00:00 2001 From: noury Date: Sun, 11 Feb 2024 00:45:05 +0100 Subject: [PATCH] add docker-compose.yml and own instance --- config.json | 3 ++- docker-compose.yml | 11 +++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 docker-compose.yml diff --git a/config.json b/config.json index 484c7cd..2e8f2a3 100644 --- a/config.json +++ b/config.json @@ -6,7 +6,8 @@ "matrix.org", "monero.social", "mozilla.org", - "xmr.se" + "xmr.se", + "noury.li" ], "allowCustomHomeservers": true, diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..2f21d9e --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,11 @@ +version: '3.9' +services: + cinny: + build: + context: . + dockerfile: Dockerfile + ports: + - '127.0.0.1:9999:80' + volumes: + - "./config.json:/src/config.json" +