generated from DAM/ts-TEMPLATE
- README: use 3456 instead of 3000 - docker-compose.yml: add commented ports for optional direct access
4.8 KiB
4.8 KiB
Vikunja with Tailscale Integration
This project sets up a Vikunja instance with Tailscale VPN integration using Docker Compose. It creates a secure, private network connection for your Vikunja instance using Tailscale.
Prerequisites
- Docker and Docker Compose installed on your system
- A Tailscale account and auth key (get one from https://login.tailscale.com/admin/authkeys)
- Basic understanding of Docker and networking concepts
Project Structure
ts-vikunja/
├── docker-compose.yml
├── tailscale/
│ ├── tailscale-data/ # Persistent Tailscale state
│ └── config/ # Tailscale configuration files
└── vikunja/
└── config/ # Vikunja configuration files
Setup Instructions
-
Clone the Repository
git clone https://gitea.example.com/org/ts-vikunja cd ts-vikunja -
Create Required Directories
mkdir -p tailscale/tailscale-data -
Configure Tailscale
- Make sure
TS_AUTHKEYandTS_LOGIN_SERVERare set in your environment (or a local .env file) before running docker compose. - Optionally, update the file in
tailscale/config/serve.jsonif you need specific Tailscale serve configurations- CAUTION: Changing
"${TS_CERT_DOMAIN}:443": falsetotruewill expose the service to the internet
- CAUTION: Changing
- Make sure
-
Configure Vikunja
- See the documentation for configuration options
-
Start the Services
docker compose up -d -
Wait for Certificate to propagate [~2m]
-
Login
- After starting the services your service should be available via tailnet at https://vikunja.{{YOUR_TAILNET_DOMAIN}}.ts.net ie https://vikunja.tail12345.ts.net/
Services
vikunja-ts (Tailscale)
- Runs Tailscale VPN client
- Image: tailscale/tailscale:latest
- Container name: vikunja-ts
- Hostname: vikunja
- Requires NET_ADMIN and SYS_MODULE capabilities
- Persists state in ./tailscale/tailscale-data
- Uses configuration from ./tailscale/config
vikunja
- Depends on vikunja-ts service
Usage
- After starting the services your service should be available via tailnet at
https://vikunja.{{YOUR_TAILNET_DOMAIN}}.ts.netiehttps://vikunja.tail12345.ts.net/ - To manually get the Tailscale IP/hostname of your container:
Look for the Tailscale IP address in the logs.
docker logs vikunja-ts
Optional Features
- Uncomment and adjust the ports mapping if you need direct access (without Tailscale):
ports: - 3456:3456 - Stopping the Services
docker compose down
Troubleshooting
- Check container logs:
docker logs vikunja-ts docker logs vikunja - Ensure your Tailscale auth key is valid and not expired
- Verify the configuration files have proper permissions
- Make sure required directories exist before starting
Notes
- The Vikunja service uses the Tailscale service's network stack via
network_mode: service:vikunja-ts - Direct port mapping is disabled by default as Tailscale handles the networking
- Services restart automatically unless explicitly stopped
- For more information:
- Tailscale documentation: https://tailscale.com/kb/
- Vikunja documentation
- Vikunja repository
- Vikunja linuxserve.io
Tailscale Serve Configuration
This repo includes two serve configuration files:
tailscale/config/serve.json— Default (recommended for Tailscale with MagicDNS + certs)tailscale/config/serve.headscale.json— For Headscale or Tailscale without certs (HTTP only)
How to use
Tailscale (default):
- No changes needed. The default
serve.jsonwill be used.
Headscale:
- Copy
serve.headscale.jsonoverserve.json:cp tailscale/config/serve.headscale.json tailscale/config/serve.json - Update the hostname in
serve.jsonto match your service.
After changing the serve config, restart the sidecar:
docker compose restart <service>-ts
Configuration
Environment Variables
Copy .env.example to .env and fill in your values:
cp .env.example .env
Tailscale Serve Configuration
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 3456 |
To switch to Headscale mode:
cp tailscale/config/serve.headscale.json tailscale/config/serve.json
docker compose restart vikunja-ts
Update the hostname in serve.headscale.json to match your service.
