Skip to content

Commit

Permalink
gluetun: add device mount to avoid issues with containerd 1.7.24
Browse files Browse the repository at this point in the history
  • Loading branch information
saltydk committed Nov 30, 2024
1 parent c72b37c commit 4eba9fc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion roles/gluetun/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,8 @@ gluetun_docker_volumes: "{{ lookup('vars', gluetun_name + '_docker_volumes_defau
+ lookup('vars', gluetun_name + '_docker_volumes_custom', default=gluetun_docker_volumes_custom) }}"

# Devices
gluetun_docker_devices_default: []
gluetun_docker_devices_default:
- "/dev/net/tun:/dev/net/tun"
gluetun_docker_devices_custom: []
gluetun_docker_devices: "{{ lookup('vars', gluetun_name + '_docker_devices_default', default=gluetun_docker_devices_default)
+ lookup('vars', gluetun_name + '_docker_devices_custom', default=gluetun_docker_devices_custom) }}"
Expand Down

0 comments on commit 4eba9fc

Please sign in to comment.