- Update all volume paths from /home/doc/swarm-data to /home/doc/projects/swarm-data - Add Traefik local entrypoint on port 8443 with host mode networking - Add Adminer local route with Traefik labels - Configure Vikunja OIDC integration with Authentik - Add Outline stack configuration - Add traefik-local stack for local network routing - Update .gitignore with backup files and dynamic configs 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
39 lines
880 B
YAML
39 lines
880 B
YAML
services:
|
|
n8n:
|
|
image: n8nio/n8n:latest
|
|
ports:
|
|
- 5678:5678
|
|
networks:
|
|
- homelab
|
|
environment:
|
|
- N8N_HOST=n8n.bitfrost.me
|
|
- N8N_PORT=5678
|
|
- N8N_PROTOCOL=https
|
|
- N8N_RUNNERS_ENABLED=true
|
|
- WEBHOOK_URL=https://n8n.bitfrost.me/
|
|
- TZ=America/New_York
|
|
volumes:
|
|
- /home/doc/projects/swarm-data/appdata/n8n:/home/node/.n8n
|
|
- /var/run/docker.sock:/var/run/docker.sock:ro
|
|
healthcheck:
|
|
test: ["CMD", "wget", "--quiet", "--tries=1", "--spider", "http://localhost:5678/healthz"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|
|
start_period: 60s
|
|
deploy:
|
|
replicas: 1
|
|
restart_policy:
|
|
condition: on-failure
|
|
delay: 5s
|
|
max_attempts: 3
|
|
resources:
|
|
limits:
|
|
memory: 2G
|
|
reservations:
|
|
memory: 512M
|
|
|
|
networks:
|
|
homelab:
|
|
external: true
|