Break down the monolithic main.yml (176 lines) into organized service categories: - infrastructure/ (caddy, authentik, dockge) - Core platform components - development/ (gitea, codeserver, conduit) - Development tools - media/ (audiobookshelf, calibre, ghost, pinchflat, etc.) - Content services - productivity/ (paperless, baikal, syncthing, mmdl, etc.) - Personal organization - monitoring/ (glance, changedetection, appriseapi) - System monitoring - communication/ (gotosocial, postiz) - Social/messaging services Benefits: - Improved maintainability with logical grouping - Better dependency management between service categories - Enhanced tag-based deployment (can deploy by category) - Cleaner organization for 25+ services All individual service tags remain functional for backwards compatibility. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
		
			
				
	
	
		
			20 lines
		
	
	
		
			455 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			455 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
- name: make gitea directories
 | 
						|
  ansible.builtin.file:
 | 
						|
    path: "{{ item}}"
 | 
						|
    state: directory
 | 
						|
  loop:
 | 
						|
    - /opt/stacks/gitea
 | 
						|
    - /opt/stacks/gitea/data
 | 
						|
 | 
						|
- name: Template out the compose file
 | 
						|
  ansible.builtin.template:
 | 
						|
    src: gitea-compose.yml.j2
 | 
						|
    dest: /opt/stacks/gitea/compose.yml
 | 
						|
    owner: root
 | 
						|
    mode: 644
 | 
						|
 | 
						|
- name: deploy gitea stack
 | 
						|
  community.docker.docker_compose_v2:
 | 
						|
    project_src: /opt/stacks/gitea
 | 
						|
    files:
 | 
						|
    - compose.yml |