- 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>
24 lines
595 B
Django/Jinja
24 lines
595 B
Django/Jinja
services:
|
|
pingvin-share:
|
|
image: stonith404/pingvin-share:latest
|
|
restart: unless-stopped
|
|
environment:
|
|
- TRUST_PROXY=true
|
|
extra_hosts:
|
|
- '{{ subdomains.auth }}:{{ docker.hairpin_ip }}'
|
|
labels:
|
|
glance.name: Pingvin
|
|
glance.icon: si:files
|
|
glance.url: https://{{ subdomains.files }}
|
|
glance.description: File sharing service
|
|
glance.id: pingvin
|
|
volumes:
|
|
- data:/opt/app/backend/data
|
|
- images:/opt/app/frontend/public/img
|
|
volumes:
|
|
images:
|
|
data:
|
|
networks:
|
|
default:
|
|
external: true
|
|
name: {{ docker.network_name }} |