diff options
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | docs/ansible_execution_environment/ansible_ee.containerfile | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -26,7 +26,7 @@ The idea was to get some of the features of AWX but none of the bloat. - Looks for container images that have the label ```ansible_execution_environment``` - That means you have to build your own image and bake that label in - This gives the flexibility to assign any mounts/ports/etc you need - - Sample containerfile, using AlmaLinux 9 and /opt/playbooks for a mount can be found in ```docs/ansible_execution_environment``` + - Sample containerfile, using CentOS Stream 9 and /opt/playbooks for a mount can be found in ```docs/ansible_execution_environment``` - Gives the ability to add extra Ansible parameters at run-time with or without using containers - Workflow has only been tested as a user with sudo rights, unprivileged containers are the ultimate goal diff --git a/docs/ansible_execution_environment/ansible_ee.containerfile b/docs/ansible_execution_environment/ansible_ee.containerfile index 48fb5ab..9b0018c 100644 --- a/docs/ansible_execution_environment/ansible_ee.containerfile +++ b/docs/ansible_execution_environment/ansible_ee.containerfile @@ -1,4 +1,4 @@ -FROM almalinux:9 +FROM quay.io/centos/centos:stream9 RUN dnf install -y ansible-core |
