From a94ec30f088aca7533d2f57e35129c12e8a66fb7 Mon Sep 17 00:00:00 2001 From: Brendan Chen Date: Wed, 25 Feb 2026 15:13:24 -0800 Subject: [PATCH] Remove Docker and Tailscale configurations --- config/tailscale-serve-config.json | 20 -------------------- docker-compose.yml | 22 ---------------------- 2 files changed, 42 deletions(-) delete mode 100644 config/tailscale-serve-config.json delete mode 100644 docker-compose.yml diff --git a/config/tailscale-serve-config.json b/config/tailscale-serve-config.json deleted file mode 100644 index 9ff142e..0000000 --- a/config/tailscale-serve-config.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "TCP": { - "443": { - "HTTPS": true - } - }, - "Web": { - "dsa-tutoring-1.tail8f43b.ts.net:443": { - "Handlers": { - "/": { - "Path": "/shared" - } - } - } - }, - "AllowFunnel": { - "dsa-tutoring-1.tail8f43b.ts.net:443": true - } -} - diff --git a/docker-compose.yml b/docker-compose.yml deleted file mode 100644 index cbc9179..0000000 --- a/docker-compose.yml +++ /dev/null @@ -1,22 +0,0 @@ -services: - tailscale: - image: tailscale/tailscale:stable - container_name: tailscale-dsa-tutoring - hostname: dsa-tutoring - environment: - - TS_AUTHKEY=${TS_AUTHKEY} - - TS_STATE_DIR=/var/lib/tailscale - - TS_SERVE_CONFIG=/config/tailscale-serve-config.json - volumes: - - tailscale-dsa-tutoring-state:/var/lib/tailscale - - /dev/net/tun:/dev/net/tun # shared interface across all Tailscale instances - - ./config:/config - - ./shared:/shared - cap_add: - - NET_ADMIN - - SYS_MODULE - restart: unless-stopped - - -volumes: - tailscale-dsa-tutoring-state: