From 31027083529c2847b77d617f8a4dc4e1c789523a Mon Sep 17 00:00:00 2001 From: raphjaph Date: Mon, 25 Oct 2021 13:45:47 +0200 Subject: [PATCH] docker-compose.yml so it's super easy to deploy on server or test locally (#27) Co-authored-by: Raphael Co-authored-by: Raphael --- docker-compose.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 docker-compose.yml diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..822dff1 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,22 @@ +version: "3.7" + +services: + satdress: + build: . + container_name: satdress + environment: + - PORT=17422 + - DOMAIN=satdress.com + - SECRET=askdbasjdhvakjvsdjasd + - SITE_OWNER_URL=https://t.me/fiatjaf + - SITE_OWNER_NAME=@fiatjaf + - SITE_NAME=Satdress + ports: + - 17422:17422 + volumes: + - satdress-data:/satdress.com + +volumes: + satdress-data: + name: satdress-data +