From 250c2c7e1c6f87f9bf8668d4322d71338c8cbc53 Mon Sep 17 00:00:00 2001 From: fghwett <1058178245@qq.com> Date: Thu, 9 Jun 2022 10:21:10 +0800 Subject: [PATCH] add gotify --- Docker/gotify/docker-compose.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Docker/gotify/docker-compose.yml diff --git a/Docker/gotify/docker-compose.yml b/Docker/gotify/docker-compose.yml new file mode 100644 index 0000000..9bb4000 --- /dev/null +++ b/Docker/gotify/docker-compose.yml @@ -0,0 +1,20 @@ +version: "3" + +services: + gotify: + container_name: gotify + ports: + - 7099:80 + environment: + - GOTIFY_DEFAULTUSER_PASS=custom + volumes: + - "./gotify_data:/app/data" + image: gotify/server + networks: + nginx: + aliases: + - gotify + +networks: + nginx: + external: true \ No newline at end of file