https://github.com/arillso/docker.ansible
Tiny Alpine-based container version of Ansible.
https://github.com/arillso/docker.ansible
ansible container docker hacktoberfest
Last synced: about 2 months ago
JSON representation
Tiny Alpine-based container version of Ansible.
- Host: GitHub
- URL: https://github.com/arillso/docker.ansible
- Owner: arillso
- License: mit
- Created: 2020-01-15T21:22:23.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2025-04-05T23:21:03.000Z (over 1 year ago)
- Last Synced: 2025-04-05T23:25:16.023Z (over 1 year ago)
- Topics: ansible, container, docker, hacktoberfest
- Language: Dockerfile
- Homepage:
- Size: 360 KB
- Stars: 1
- Watchers: 5
- Forks: 6
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Ansible Container
Alpine-based Docker container for running Ansible with Mitogen optimization, Kubernetes tools, and multi-platform support.
## Quick Start
```bash
# Check Ansible version
docker run --rm arillso/ansible ansible-playbook --version
# Run a playbook
docker run --rm -v $(pwd):/workspace -w /workspace arillso/ansible ansible-playbook playbook.yml
# Interactive shell
docker run --rm -it -v $(pwd):/workspace -w /workspace arillso/ansible bash
```
## Features
- Mitogen enabled by default (2-7x faster execution)
- Kubernetes tools (kubectl, helm, kustomize)
- Multi-platform (amd64, arm64)
- Non-root user
## Registry
```bash
docker pull ghcr.io/arillso/ansible
docker pull arillso/ansible
```
## Build
```bash
make ansible-build
make comprehensive-test
```
## License
MIT License