| 1234567891011121314151617181920212223242526272829303132333435363738 |
- ---
- # Archetypes configuration for compose module
- # Schema version to use for loading module spec
- schema: "1.2"
- # Variable overrides and additional testing variables
- vars:
- # Override defaults for testing
- service_name:
- default: testapp
- container_name:
- default: testapp-container
- container_hostname:
- default: testapp-host
- traefik_host:
- default: testapp.home.arpa
-
- # Additional variables not in module spec
- service_image:
- type: str
- default: testapp:latest
- description: Docker image for the service
-
- service_port:
- type: int
- default: 80
- description: Internal container port
-
- volume_name:
- type: str
- default: testapp-data
- description: Volume name for persistent storage
-
- traefik_middleware:
- type: str
- default: none
- description: Traefik middleware chain (comma-separated)
|