Core Infrastructure: - Add LLDAP for centralized user authentication (lldap.fig.systems) - Configure Tinyauth with LLDAP backend for SSO (auth.fig.systems) - Set up Traefik v3.3 with Let's Encrypt SSL automation - Create homelab Docker network for service isolation Media Services: - Configure Jellyfin with /media folder mappings (flix.fig.systems) - Add Jellyseerr for media requests (requests.fig.systems) - Update Immich with photo library access (photos.fig.systems) - Set up Sonarr for TV automation (sonarr.fig.systems) - Set up Radarr for movie automation (radarr.fig.systems) - Configure SABnzbd for Usenet downloads (sabnzbd.fig.systems) - Add qBittorrent for torrent downloads (qbt.fig.systems) Utility Services: - Update Linkwarden with proper networking (links.fig.systems) - Configure Vikunja task management (tasks.fig.systems) - Set up LubeLogger vehicle tracking (garage.fig.systems) - Configure Calibre-web for ebooks (books.fig.systems) - Add Booklore for book tracking (booklore.fig.systems) - Update FreshRSS reader (rss.fig.systems) - Update RSSHub with internal networking (rsshub.fig.systems) - Update MicroBin pastebin (paste.fig.systems) - Add File Browser for media access (files.fig.systems) Technical Improvements: - Standardize all compose files to compose.yaml (Docker best practice) - Add Traefik labels to all services for SSL termination - Implement proper network isolation (homelab + service-specific networks) - Add health checks to database services - Configure dual domain support (fig.systems + edfig.dev) - Set proper /media folder mappings for all media services - Add comprehensive README with deployment instructions Security: - Enable SSO via Tinyauth for most services - Configure LLDAP with admin user (edfig/admin@edfig.dev) - Services with built-in auth have SSO disabled by default - All traffic secured with automatic Let's Encrypt certificates
64 lines
1.8 KiB
YAML
64 lines
1.8 KiB
YAML
# Linkwarden - Collaborative bookmark manager
|
|
# Docs: https://docs.linkwarden.app/self-hosting/installation
|
|
|
|
services:
|
|
linkwarden:
|
|
container_name: linkwarden
|
|
image: ghcr.io/linkwarden/linkwarden:latest
|
|
env_file: .env
|
|
environment:
|
|
- DATABASE_URL=postgresql://postgres:${POSTGRES_PASSWORD}@linkwarden-postgres:5432/postgres
|
|
- TZ=America/Los_Angeles
|
|
volumes:
|
|
- ./data:/data/data
|
|
depends_on:
|
|
- linkwarden-postgres
|
|
- linkwarden-meilisearch
|
|
restart: always
|
|
networks:
|
|
- homelab
|
|
- linkwarden_internal
|
|
labels:
|
|
traefik.enable: true
|
|
traefik.docker.network: homelab
|
|
traefik.http.routers.linkwarden.rule: Host(`links.fig.systems`) || Host(`links.edfig.dev`)
|
|
traefik.http.routers.linkwarden.entrypoints: websecure
|
|
traefik.http.routers.linkwarden.tls.certresolver: letsencrypt
|
|
traefik.http.services.linkwarden.loadbalancer.server.port: 3000
|
|
traefik.http.routers.linkwarden.middlewares: tinyauth
|
|
|
|
linkwarden-postgres:
|
|
container_name: linkwarden-postgres
|
|
image: postgres:16-alpine
|
|
env_file: .env
|
|
environment:
|
|
- TZ=America/Los_Angeles
|
|
volumes:
|
|
- ./pgdata:/var/lib/postgresql/data
|
|
restart: always
|
|
networks:
|
|
- linkwarden_internal
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "pg_isready -h localhost -U postgres"]
|
|
interval: 10s
|
|
timeout: 5s
|
|
retries: 5
|
|
|
|
linkwarden-meilisearch:
|
|
container_name: linkwarden-meilisearch
|
|
image: getmeili/meilisearch:v1.12.8
|
|
env_file: .env
|
|
environment:
|
|
- TZ=America/Los_Angeles
|
|
volumes:
|
|
- ./meili_data:/meili_data
|
|
restart: always
|
|
networks:
|
|
- linkwarden_internal
|
|
|
|
networks:
|
|
homelab:
|
|
external: true
|
|
linkwarden_internal:
|
|
name: linkwarden_internal
|
|
driver: bridge
|