From 79127b5b0db49aabd32769dcadd799fca344d829 Mon Sep 17 00:00:00 2001 From: Emi Matchu Date: Wed, 28 Feb 2024 14:10:18 -0800 Subject: [PATCH] Explain why we add to the `docker` group --- setup-glitchtip.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup-glitchtip.yml b/setup-glitchtip.yml index 7ad80e3..9983b07 100644 --- a/setup-glitchtip.yml +++ b/setup-glitchtip.yml @@ -4,6 +4,8 @@ become: yes become_user: root tasks: + # This isn't strictly necessary, it just lets us log in and interact with + # Docker with commands like `docker logs glitchtip-web-1`! - name: Add current user to the Docker group user: name: "{{ lookup('env', 'USER') }}"