From dccbc37a45ef3aebf281200f9170d4a550d9a85b Mon Sep 17 00:00:00 2001 From: peskyadmin Date: Sun, 2 Aug 2026 15:57:19 -0400 Subject: [PATCH] fix: correct port references in README and add commented ports section - README: use 3456 instead of 3000 - docker-compose.yml: add commented ports for optional direct access --- README.md | 4 ++-- docker-compose.yml | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d897006..2d2e635 100644 --- a/README.md +++ b/README.md @@ -80,7 +80,7 @@ ts-vikunja/ - Uncomment and adjust the ports mapping if you need direct access (without Tailscale): ```yaml ports: - - 3000:3000 + - 3456:3456 ``` - Stopping the Services ```bash @@ -147,7 +147,7 @@ This repo ships with two serve configuration options: | File | Use Case | Description | |------|----------|-------------| | `tailscale/config/serve.json` | Tailscale (default) | Supports both HTTP and HTTPS when MagicDNS + certs are configured | -| `tailscale/config/serve.headscale.json` | Headscale / no certs | HTTP-only on port 80 | +| `tailscale/config/serve.headscale.json` | Headscale / no certs | HTTP-only on port 3456 | **To switch to Headscale mode:** diff --git a/docker-compose.yml b/docker-compose.yml index a68c6b1..d678c3c 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -31,6 +31,8 @@ services: vikunja: image: vikunja/vikunja:0.24 + # ports: + # - 3456:3456 environment: VIKUNJA_DATABASE_TYPE: postgres VIKUNJA_DATABASE_HOST: 127.0.0.1