From 1c22ce026f9ed54b49ea2e46f05a7b1696dc3c24 Mon Sep 17 00:00:00 2001 From: peskyadmin Date: Mon, 24 Nov 2025 10:03:46 -0500 Subject: [PATCH] manual init --- docker-compose.yml | 31 +++++++++++++++++++++++++------ 1 file changed, 25 insertions(+), 6 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 72aa767..c129c72 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,8 +1,8 @@ services: - {{service}}-ts: + christmas-community-ts: image: tailscale/tailscale:latest - hostname: {{service}} - container_name: {{service}}-ts + hostname: christmas-community + container_name: christmas-community-ts environment: - TS_AUTHKEY={{YOUR_TAILSCALE_AUTHKEY}} - TS_STATE_DIR=/var/lib/tailscale @@ -15,7 +15,26 @@ services: - net_admin - sys_module restart: unless-stopped - {{service-compose}} - network_mode: service:{{service}}-ts + christmas-community: + image: wingysam/christmas-community + volumes: + - ./data:/data + # ports: + # # If you want to go to localhost:8080 to access Christmas Community, + # # use - 8080:80 instead of + # - 80:80 + environment: + # Table mode, set to 'false' to revert to box mode + TABLE: 'true' + # Single list mode + # (for weddings, birthdays, etc. only the admin account's list is accessible) + # Set to 'true' to enable + SINGLE_LIST: 'false' + # Some websites (like walmart) send headers that are larger than 8MB in + # length. If issues are encountered, set the node.js limit to a higher + # number than 8192 + #NODE_OPTIONS: "--max-http-header-size=32768" + restart: always + network_mode: service:christmas-community-ts depends_on: - - {{service}}-ts \ No newline at end of file + - christmas-community-ts \ No newline at end of file