ansible/roles/docker/templates/baikal-compose.yml.j2
Phil dad7e887a8 feat: complete variable management implementation and update documentation
- 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>
2025-06-06 15:45:52 -06:00

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 }}