diff --git a/pages/linux/scrun.md b/pages/linux/scrun.md new file mode 100644 index 00000000000000..a9c1b456859fe1 --- /dev/null +++ b/pages/linux/scrun.md @@ -0,0 +1,36 @@ +# scrun + +> An OCI runtime proxy for Slurm that runs containers as jobs. +> More information: . + +- Create a new container with a specific ID: + +`scrun create {{container_id}}` + +- Start a previously created container: + +`scrun start {{container_id}}` + +- Query the state of a container: + +`scrun state {{container_id}}` + +- Send a signal to a container (default: SIGTERM): + +`scrun kill {{container_id}}` + +- Send a specific signal to a container: + +`scrun kill {{container_id}} {{SIGKILL}}` + +- Delete a container and release its resources: + +`scrun delete {{container_id}}` + +- Enable debug logging: + +`scrun {{create|start|kill|delete}} {{container_id}} --debug` + +- Display version: + +`scrun --version`