Skip to content

Commit 3a498c6

Browse files
committed
Remove executable bit from "/usr/local/bin/runc"
The runc script interferes with running Docker containers.
1 parent be648c5 commit 3a498c6

File tree

1 file changed

+5
-0
lines changed
  • provision-contest/ansible/roles/docker/tasks

1 file changed

+5
-0
lines changed

provision-contest/ansible/roles/docker/tasks/main.yml

+5
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,11 @@
2525
pip:
2626
name: docker
2727

28+
- name: Remove executable bit from "/usr/local/bin/runc"
29+
file:
30+
dest: /usr/local/bin/runc
31+
mode: -x
32+
2833
- name: Load container archives
2934
include_tasks: load-container.yml
3035
with_filetree:

0 commit comments

Comments
 (0)