diff --git a/roles/dockerd/tasks/main.yml b/roles/dockerd/tasks/main.yml index 05be0fd..046f5d7 100644 --- a/roles/dockerd/tasks/main.yml +++ b/roles/dockerd/tasks/main.yml @@ -28,13 +28,13 @@ - name: Make sure /usr/share/docker.io/contrib is in PATH variable lineinfile: - path: "{{ ansible_env['HOME'] }}/.profile" + path: "{{ ansible_env['HOME'] }}/.profile" regex: '^export PATH="/usr/share/docker\.io/contrib' line: 'export PATH="/usr/share/docker.io/contrib:$PATH"' - name: Make sure DOCKER_HOST variable is set correctly lineinfile: - path: "{{ ansible_env['HOME'] }}/.profile" + path: "{{ ansible_env['HOME'] }}/.profile" regex: '^export DOCKER_HOST=' line: "export DOCKER_HOST=unix:///run/user/{{ host_uid }}/docker.sock"