Updated multiple stack files to use local hostnames instead of external domains, simplified Traefik configuration, and reorganized Authentik service location. Changes improve local development setup and reduce complexity. Key changes: - Simplified .gitignore to exclude entire conf/ directory - Updated Traefik labels across services to use .swarm.home domains - Removed Cloudflare cert resolver references for local TLS - Moved Authentik from apps/ to core/ directory structure - Removed Traefik labels from n8n and paperless services - Updated Traefik stack to use simplified port bindings - Added timezone environment variable to adminer and outline 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
34 lines
900 B
YAML
34 lines
900 B
YAML
services:
|
|
adminer:
|
|
image: adminer:latest
|
|
networks:
|
|
- homelab
|
|
environment:
|
|
- ADMINER_DEFAULT_SERVER=10.0.4.10
|
|
- ADMINER_DESIGN=nette
|
|
- TZ=America/New_York
|
|
healthcheck:
|
|
test: [ "CMD", "php", "-r", "if (file_get_contents('http://localhost:8080')) exit(0); exit(1);" ]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|
|
start_period: 20s
|
|
deploy:
|
|
replicas: 1
|
|
resources:
|
|
limits:
|
|
memory: 512M
|
|
reservations:
|
|
memory: 128M
|
|
labels:
|
|
# Local route
|
|
- traefik.enable=true
|
|
- traefik.swarm.network=homelab
|
|
- traefik.http.routers.adminer.rule=Host(`miner.swarm.home`)
|
|
- traefik.http.routers.adminer.entrypoints=web,websecure
|
|
- traefik.http.routers.adminer.tls=true
|
|
- traefik.http.services.adminer.loadbalancer.server.port=8080
|
|
networks:
|
|
homelab:
|
|
external: true
|