-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsite.yaml
More file actions
28 lines (27 loc) · 761 Bytes
/
site.yaml
File metadata and controls
28 lines (27 loc) · 761 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
- hosts: all
vars:
pip_install_packages:
- name: docker
docker_edition: 'ce'
docker_packages:
- "docker-{{ docker_edition }}"
- "docker-{{ docker_edition }}-cli"
#- "docker-{{ docker_edition }}-rootless-extras"
docker_packages_state: present
docker_install_compose_plugin: true
docker_compose_package: docker-compose-plugin
docker_compose_package_state: present
docker_install_compose: true
docker_compose_path: /usr/local/bin/docker-compose
docker_daemon_options:
live-restore: true
log-opts:
max-size: "100m"
pre_tasks:
- name: Update apt cache
apt:
update_cache: yes
roles:
- geerlingguy.pip
- geerlingguy.docker
- goauthentik.appliance