- Update remaining Docker Compose templates with centralized variables - Fix service tag isolation to deploy individual services only - Update all README files with variable management architecture - Document variable hierarchy in DEPLOYMENT_LEARNINGS.md - Add comprehensive variable usage patterns to CLAUDE.md - Standardize domain references using {{ subdomains.* }} pattern - Replace hardcoded network names with {{ docker.network_name }} - Update hairpinning configuration to use variables 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
21 lines
435 B
Django/Jinja
21 lines
435 B
Django/Jinja
services:
|
|
baikal:
|
|
image: ckulka/baikal:nginx
|
|
restart: unless-stopped
|
|
volumes:
|
|
- config:/var/www/baikal/config
|
|
- data:/var/www/baikal/Specific
|
|
labels:
|
|
glance.name: Baikal
|
|
glance.icon: si:protoncalendar
|
|
glance.url: https://{{ subdomains.cal }}/
|
|
glance.description: CalDav server
|
|
|
|
volumes:
|
|
config:
|
|
data:
|
|
|
|
networks:
|
|
default:
|
|
external: true
|
|
name: {{ docker.network_name }} |