This role is designed to ingest directories of compose.yaml
files and output a sanitised version to a remote host using Ansible.
⚠️ Warning: v1 of this role used a completely different data structure. See v1 vs v2 of this role
I wrote the following blog post on the v2 release for more info.
Import this role into your Ansible setup either as a git submodule or via Ansible Galaxy.
In the root of your git repo create a services
directory and populate it as follows:
.
└── services
├── ansible-hostname1
│ ├── librespeed
│ │ └── compose.yaml
│ ├── jellyfin
│ │ └── compose.yaml
└── ansible-hostname2
└── uptime-kuma
└── compose.yaml
Each compose.yaml
file is a standard format file, for example librespeed looks like this:
services:
librespeed:
image: lscr.io/linuxserver/librespeed
container_name: librespeed
ports:
- 8008:80
environment:
- "TZ={{ host_timezone }}"
- "PASSWORD={{ testpass }}"
restart: unless-stopped
Notice that variable interpolation is supported. The source of these variables can be either an encryped secrets file via Ansible vault (read more about that here - or see ironicbadger/infra for an implemented example), an env
file you manually place alongside the compose.yaml
on the remote host (see docker compose variable interpolation), or any other standard Ansible variable source.
Multiple services per compose file are also supported. Useful to run a database alongside an app, for example.
By default, if a compose.yaml
file is found it will be included in the automation, and placed into the output compose.yaml
on the remote host. This file is placed under the docker_compose_generator_output_path
which is the home folder of the ssh user. The role also supports disabling specific compose files by matching the name of the file against a host_var
or group_var
file with the following variable:
disabled_compose_files:
- jellyfin
By default, the role is looking for a directory structure under services/
which matches your Ansible hostname. If your hostname doesn't match the name of this directory for some reason (maybe it's an IP address, rather than a hostname), you can override the name with the variable:
docker_compose_hostname: my-custom-hostname
v1 of this role used a large custom data structure and an ever more complex jinja2 based templating approach. The custom nature of this approach added friction when adding new services and made it difficult to copy/paste from upstream repositories to try things out quickly.
v2 supports using standalone, native compose files. This makes it much more straightforward to try out new software without needing to 'convert' it to work with the v1 custom data structures.
If you find any edge cases I've missed for v2, please open an issue or PR. I'd be happy to review.
Special thanks goes to u/fuzzymistborn for the spark for the idea to make this change. As ever, you can find a full working example of my usage of this role over at ironicbadger/infra.