Files
CC-Tweaked-Stuff/containers_examples.lua
Rivulet 1b79fa4881 Update containers_examples.lua
add docs for containers
2026-02-20 23:44:39 +00:00

10 lines
469 B
Lua

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")
--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()
containers.start(env)