ansible-role-docker-compose-generator icon indicating copy to clipboard operation
ansible-role-docker-compose-generator copied to clipboard

An Ansible role which procedurally generates docker-compose.yml files

Results 13 ansible-role-docker-compose-generator issues
Sort by recently updated
recently updated
newest added

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...