|
|
|
# Docker Ansible Testing
|
|
|
|
This repo is to spin up a docker container that runs systemd and openssh to be able to test out ansible playbooks on it.
|
|
|
|
|
|
Getting Started:
|
|
```sh
|
|
docker build -t dat:latest .
|
|
docker run -it --privileged --cap-add=ALL -p 10022:22 --rm -d dat:latest
|
|
```
|