Skip to content

Commit 0124f0c

Browse files
committed
wip: enable features for docker
1 parent 1a396e8 commit 0124f0c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

create-a-container/routers/containers.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ router.post('/', async (req, res) => {
225225
// Configure the cloned container
226226
await client.updateLxcConfig(node.name, vmid, {
227227
cores: 4,
228-
features: 'nesting=1',
228+
features: 'nesting=1,keyctl=1,fuse=1',
229229
memory: 4096,
230230
net0: 'name=eth0,ip=dhcp,bridge=vmbr0',
231231
searchdomain: site.internalDomain,
@@ -260,7 +260,7 @@ router.post('/', async (req, res) => {
260260
}
261261
}
262262
console.error('DNS lookup failed after maximum retries');
263-
return null
263+
return null;
264264
})();
265265

266266
const container = await Container.create({

0 commit comments

Comments
 (0)