khuedoan-homelab/metal/roles/tfstate/tasks/main.yml

16 lines
338 B
YAML
Raw Normal View History

2021-06-08 20:37:39 +07:00
- name: Install Python library for the Docker
dnf:
name: python-docker
- name: Create etcd container
docker_container:
name: etcd-tfstate
image: bitnami/etcd
restart_policy: always
env:
ALLOW_NONE_AUTHENTICATION: "yes"
published_ports:
2021-06-08 20:37:39 +07:00
- 23799:2379
volumes:
- tfstate:/bitnami/etcd/data