ansible-role-docker-compose-generator
ansible-role-docker-compose-generator copied to clipboard
An Ansible role which procedurally generates docker-compose.yml files
This PR updates the template file selection regex to support optional .j2 extensions, enabling Jinja syntax highlighting and preventing editor errors when using Jinja variables in `compose.yml` files. Old: `selectattr('path',...
If I create the following directory structure: ```bash services └── solid-dog ├── 01-Caddy │ └── compose.yaml └── 99-ExtraConfig └── compose.yaml ``` And the compose file in the ExtraConfig directory contains:...
This solves the issue where top-level sections like networks: in additional compose files weren't correctly indented in the final output. With this change, each line from the included compose files...