This repository has been archived on 2022-04-30. You can view files and clone it, but cannot push or open issues or pull requests.
docker-traefik/docker.yml

45 lines
1.2 KiB
YAML

- name: Install apt-transport-https
apt:
name: apt-transport-https
state: present
- name: Add an Apt signing key, uses whichever key is at the URL
ansible.builtin.apt_key:
url: https://download.docker.com/linux/debian/gpg
state: present
keyring: /usr/share/keyrings/docker-archive-keyring.gpg
- name: Add specified repository into sources list
ansible.builtin.apt_repository:
repo: "deb [arch=amd64 signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/debian buster stable"
state: present
- name: Update repositories cache and install "docker-ce" package
apt:
name: docker-ce
update_cache: yes
- name: Update repositories cache and install "docker-ce" package
apt:
name: docker-ce-cli
- name: Update repositories cache and install "docker-ce" package
apt:
name: containerd.io
- name: Recursively change ownership of a directory
ansible.builtin.file:
path: /root/traefic
state: directory
recurse: yes
owner: root
group: root
- name: Template a file to /root/traefic/doicker-compose.yml
ansible.builtin.template:
src: docker-compose.j2
dest: /root/traefic/docker-compose.yml
owner: root
group: root
mode: '0644'