diff --git a/docs/lxc-support/lxc-backend.md b/docs/lxc-support/lxc-backend.md index 9896b5cc4..32c20d3b5 100644 --- a/docs/lxc-support/lxc-backend.md +++ b/docs/lxc-support/lxc-backend.md @@ -39,13 +39,17 @@ The LXC backend uses the same JSON configuration schema as the Windows backends, ```json { - "script": "echo 'Hello from container'", + "containerId": "my-sandbox", "containment": "lxc", + "process": { + "commandLine": "echo 'Hello from container'" + }, + "lifecycle": { + "destroyOnExit": true + }, "lxc": { - "containerName": "my-sandbox", "distribution": "alpine", - "release": "3.20", - "destroyOnExit": true + "release": "3.20" }, "filesystem": { "readwritePaths": ["/tmp/output"],