1
0
mirror of https://github.com/inofix/common-playbooks.git synced 2026-02-05 12:45:29 +01:00
Files
common-playbooks/setup-docker.yml
Michael Lustenberger 747855f634 Deprecation Warnings
Move to use import_playbook instead of include..
2024-03-30 12:28:47 +01:00

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