Explorar o código

Fixup SELinux permissions for docker when using a different graph path

Signed-off-by: Mrunal Patel <mrunalp@gmail.com>
Mrunal Patel %!s(int64=6) %!d(string=hai) anos
pai
achega
6069a314be
Modificáronse 1 ficheiros con 11 adicións e 0 borrados
  1. 11 0
      roles/container_runtime/tasks/package_docker.yml

+ 11 - 0
roles/container_runtime/tasks/package_docker.yml

@@ -137,6 +137,17 @@
   changed_when: False
   register: r_docker_already_running_result
 
+- name: Check for docker_storage_path/overlay2
+  stat:
+    path: "{{ docker_storage_path }}/overlay2"
+  register: dsp_stat
+
+- name: Fixup SELinux permissions for docker
+  shell: |
+           semanage fcontext -a -e /var/lib/docker/overlay2 "{{ docker_storage_path }}/overlay2"
+           restorecon -R -v "{{ docker_storage_path }}/overlay2"
+  when: dsp_stat.stat.exists
+
 - name: Start the Docker service
   systemd:
     name: docker