16 lines
400 B
YAML
16 lines
400 B
YAML
# Here we basically install a config that limits all containers to having
|
|
# a maxium amount of logs on disk. We do this to save on storage space
|
|
---
|
|
- hosts: alpha
|
|
become: yes
|
|
tasks:
|
|
- name: Copy over daemon.json config
|
|
copy:
|
|
src: docker/daemon.json
|
|
dest: /etc/daemon.json
|
|
|
|
- name: Restart Docker service
|
|
systemd:
|
|
name: docker
|
|
state: restarted
|