UNPKG

@installdoc/ansible-gas-station

Version:

An Ansible playbook that provisions your network with software from GitHub Awesome lists, developed with disaster recovery in mind ⛽🔥🤤

27 lines (24 loc) 509 B
--- - name: Install Docker package: name: '{{ docker_package }}' state: present notify: restart docker - name: Ensure Docker is started and enabled at boot service: name: docker state: started enabled: true - name: Ensure Docker is configured to use gVisor runtime become_user: root copy: content: | { "runtimes": { "runsc": { "path": "/usr/local/bin/runsc" } } } dest: /etc/docker/daemon.json mode: 0644