1
0
Fork 0
mirror of https://codeberg.org/icewind/haze.git synced 2026-06-03 17:14:08 +02:00

docker access

This commit is contained in:
Robin Appelman 2022-01-11 17:42:23 +01:00
commit 0985b4adce
2 changed files with 6 additions and 1 deletions

View file

@ -151,7 +151,9 @@ pub fn default_mappings<'a>() -> impl IntoIterator<Item = Mapping<'a>> {
Mapping::new(Sources, ".htaccess", "/var/www/html/.htaccess")
.file()
.read_only(),
Mapping::new(Absolute, "/var/run/docker.sock", "/var/run/docker.sock"),
Mapping::new(Absolute, "/var/run/docker.sock", "/var/run/docker.sock")
.file()
.dont_create(),
];
IntoIterator::into_iter(mappings)
}