2023-02-12 23:18:14 +01:00
Docker setup
============
2023-02-12 23:22:28 +01:00
Docker setup Ansible role. This role is largely inspired by `Jeff Geerling <https://github.com/geerlingguy/ansible-role-docker> `_ Docker role, I made my one since I tend to not rely on external projects too much especially when they are quite simple.
2023-02-12 23:18:14 +01:00
Requirements
------------
This role was written for Debian.
Role Variables
--------------
2023-02-12 23:22:28 +01:00
Variables can be found in the `default vars <defaults/main.yml> `_
2023-02-12 23:18:14 +01:00
2023-02-12 23:36:13 +01:00
.. code-block :: yaml
docker_edition: 'ce'
docker_dependencies:
- "apt-transport-https"
- "ca-certificates"
- "curl"
- "gpg"
- "gnupg"
- "lsb-release"
docker_packages:
- "docker-{{ docker_edition }}"
- "docker-{{ docker_edition }}-cli"
- "docker-{{ docker_edition }}-rootless-extras"
- "containerd.io"
2023-02-12 23:18:14 +01:00
Defines Docker flavor to install, dependencies and the packages to install. We don't install the docker-compose binary since compose is include in the Docker command line.
2023-02-12 23:36:13 +01:00
.. code-block :: yaml
docker_users:
- "syrell"
2023-02-12 23:18:14 +01:00
A list of UNIX users to add to the docker group.
2023-02-12 23:36:13 +01:00
.. code-block :: yaml
docker_daemon_options:
docker_daemon_options:
log-opts:
max-size: "100m"
2023-02-12 23:18:14 +01:00
A dictionary listing options to add to the Docker daemon.
2023-02-12 23:36:13 +01:00
.. code-block :: yaml
docker_apt_release_channel: stable
docker_repo_url: https://download.docker.com/linux
docker_apt_arch: amd64
docker_apt_gpg_key: "{{ docker_repo_url }}/{{ ansible_distribution | lower }}/gpg"
docker_apt_repository: "deb [arch={{ docker_apt_arch }}] {{ docker_repo_url }}/{{ ansible_distribution | lower }} {{ ansible_distribution_release }} {{ docker_apt_release_channel }}"
2023-02-12 23:18:14 +01:00
Variables relative to the Docker Debian repository.
Dependencies
------------
None.
Example Playbook
----------------
2023-02-12 23:36:13 +01:00
.. code-block :: yaml
- name: Install docker
hosts: all
roles:
- docker
2023-02-12 23:18:14 +01:00
License
-------
BSD-3
Author Information
------------------
2023-02-12 23:22:28 +01:00
Role created by `syrell <https://git.syyrell.com/syrell> `_