- Add grocy subdomain to domains.yml - Create Docker Compose template using LinuxServer image - Add Ansible task for service deployment - Configure Caddy reverse proxy with Authentik auth and API bypass - Add DNS record for grocy subdomain - Integrate with productivity services category 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
		
			
				
	
	
		
			18 lines
		
	
	
		
			403 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			403 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
---
 | 
						|
- name: Create grocy directories
 | 
						|
  ansible.builtin.file:
 | 
						|
    path: "{{ item }}"
 | 
						|
    state: directory
 | 
						|
  loop:
 | 
						|
    - /opt/stacks/grocy
 | 
						|
 | 
						|
- name: Template grocy compose file
 | 
						|
  ansible.builtin.template:
 | 
						|
    src: grocy-compose.yml.j2
 | 
						|
    dest: /opt/stacks/grocy/compose.yml
 | 
						|
 | 
						|
- name: Deploy grocy stack
 | 
						|
  community.docker.docker_compose_v2:
 | 
						|
    project_src: /opt/stacks/grocy
 | 
						|
    files:
 | 
						|
      - compose.yml |