mirror of
https://github.com/inofix/common-playbooks.git
synced 2026-02-05 12:45:29 +01:00
15 lines
518 B
YAML
15 lines
518 B
YAML
#* This playbook prepares the system for the `install-docker` playbook (to be
|
|
#* found here in the same repo). It basically prepares a new logical volume and
|
|
#* organizes the users. To only install docker, use the aforementioned playbook.
|
|
#* Use '-a' to pass parameters to ansible (as '-e'). See ansible fetch for
|
|
#* details.
|
|
#* No arguments are mandatory.
|
|
|
|
- hosts: app.docker, &os.debian_bullseye
|
|
become: true
|
|
roles:
|
|
- setup-docker
|
|
|
|
- import_playbook: install-docker.yml
|
|
- import_playbook: add-admins.yml
|