mirror of
https://github.com/geerlingguy/ansible-for-devops.git
synced 2024-05-19 06:50:03 +00:00
19 lines
384 B
YAML
19 lines
384 B
YAML
---
|
|
- hosts: localhost
|
|
connection: local
|
|
|
|
tasks:
|
|
- name: Ensure Docker image is built from the test Dockerfile.
|
|
docker_image:
|
|
name: test
|
|
source: build
|
|
build:
|
|
path: test
|
|
state: present
|
|
|
|
- name: Ensure the test container is running.
|
|
docker_container:
|
|
image: test:latest
|
|
name: test
|
|
state: started
|