From 78af832418c0166de4aeffd0cdc7275075ec1f9d Mon Sep 17 00:00:00 2001 From: dex Date: Sun, 29 Oct 2023 05:40:25 +0000 Subject: [PATCH] Add webhosting --- webhosting | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 webhosting diff --git a/webhosting b/webhosting new file mode 100644 index 0000000..7675874 --- /dev/null +++ b/webhosting @@ -0,0 +1,24 @@ +version: '3.9' + +services: + cloudflare-webhosting: + image: cloudflare/cloudflared:latest + restart: unless-stopped + command: tunnel run + environment: + - TUNNEL_TOKEN=$TUNNEL_TOKEN + + ss_website: + container_name: ss_website + image: ss_website + restart: always + ports: + - 3000:3000 + build: + context: /dockers/ss_website + dockerfile: Dockerfile + +networks: + webhosting: + external: true + name: webhosting