16 lines
674 B
YAML
16 lines
674 B
YAML
---
|
|
# defaults file for docker
|
|
|
|
# Docker repo URL.
|
|
docker_repo_url: https://download.docker.com/linux
|
|
|
|
# Used only for Debian/Ubuntu/Pop!_OS/Linux Mint. Switch 'stable' to 'nightly' if needed.
|
|
docker_apt_release_channel: stable
|
|
docker_apt_arch: "{{ 'arm64' if ansible_architecture == 'aarch64' else 'amd64' }}"
|
|
docker_apt_repository: "deb [arch={{ docker_apt_arch }} signed-by=/etc/apt/trusted.gpg.d/docker.asc] {{ docker_repo_url }}/{{ ansible_distribution | lower }} {{ ansible_distribution_release }} {{ docker_apt_release_channel }}"
|
|
|
|
# A list of users who will be added to the docker group.
|
|
docker_users: []
|
|
|
|
# Docker daemon options as a dict
|
|
docker_daemon_options: {}
|