From 3feae4744563eec1c610c641fc5798961de8ec32 Mon Sep 17 00:00:00 2001 From: Rivulet Date: Fri, 20 Feb 2026 23:46:05 +0000 Subject: [PATCH] Update containers_examples.lua --- containers_examples.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/containers_examples.lua b/containers_examples.lua index 6cb104c..f4cd113 100644 --- a/containers_examples.lua +++ b/containers_examples.lua @@ -3,7 +3,7 @@ local containers = require("containers") --To create a container use the getENV(fspath, has_http) function --the first argument is the path for the file system the second is an optional argument that when provided with true enables http -local env = containers.getENV("/containerfs") +local env = containers.getENV("/containerfs", true) --To run the created container you call the start(env) --This will start the container and block on it you can put this in a function like parrallel.waitForAll()