From 9caef6c8c47ee0233c76bf1e07ab8ec1b948fdb0 Mon Sep 17 00:00:00 2001 From: Antonio Murdaca Date: Sun, 2 Aug 2015 12:00:39 +0200 Subject: [PATCH] Remove reference to nsinit Signed-off-by: Antonio Murdaca --- .gitignore | 2 -- libcontainer/docs/man/nsinit.1.md | 38 ------------------------------- 2 files changed, 40 deletions(-) delete mode 100644 libcontainer/docs/man/nsinit.1.md diff --git a/.gitignore b/.gitignore index 4c9ade07e..41b841829 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,2 @@ -bundles -nsinit/nsinit vendor/pkg runc diff --git a/libcontainer/docs/man/nsinit.1.md b/libcontainer/docs/man/nsinit.1.md deleted file mode 100644 index f6f2775ae..000000000 --- a/libcontainer/docs/man/nsinit.1.md +++ /dev/null @@ -1,38 +0,0 @@ -% nsinit User Manual -% opencontainers/runc/libcontainer -% JAN 2015 - -NAME: - nsinit - A low-level utility for managing containers. - It is used to spawn new containers or join existing containers. - -USAGE: - nsinit [global options] command [command options] [arguments...] - -VERSION: - 0.1 - -COMMANDS: - config display the container configuration - exec execute a new command inside a container - init runs the init process inside the namespace - oom display oom notifications for a container - pause pause the container's processes - stats display statistics for the container - unpause unpause the container's processes - help, h shows a list of commands or help for one command - -EXAMPLES: - -Get the of an already running docker container. -`sudo docker ps` will return the list of all the running containers. - -take the (e.g. 4addb0b2d307) and go to its config directory -`/var/lib/docker/execdriver/native/4addb0b2d307` and here you can run the nsinit -command line utility. - -e.g. `nsinit exec /bin/bash` will start a shell on the already running container. - -# HISTORY -Jan 2015, Originally compiled by Shishir Mahajan (shishir dot mahajan at redhat dot com) -based on nsinit source material and internal work.