summaryrefslogtreecommitdiffstats
path: root/share/man/container-build.1.rst
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--share/man/container-build.1.rst (renamed from share/man/container-create.1.rst)54
1 files changed, 27 insertions, 27 deletions
diff --git a/share/man/container-create.1.rst b/share/man/container-build.1.rst
index cb10f97..55f2a9b 100644
--- a/share/man/container-create.1.rst
+++ b/share/man/container-build.1.rst
@@ -17,13 +17,13 @@
.. You should have received a copy of the GNU General Public License
.. along with this program. If not, see <https://www.gnu.org/licenses/>.
-================
-container-create
-================
+===============
+container-build
+===============
-------------------
-Create a container
-------------------
+-----------------
+Build a container
+-----------------
:manual section: 1
:manual group: Open Infrastructure
@@ -31,40 +31,40 @@ Create a container
Synopsis
========
-| **container create** ['OPTIONS']
-| **cnt cr** ['OPTIONS']
+| **container build** ['OPTIONS']
+| **cnt b** ['OPTIONS']
Description
===========
-The **container create** command creates a container based on a script.
+The **container build** command builds a container based on a script.
Scripts
-------
-The following container scripts are available:
+The following build scripts are available:
curl:
- Basic script to create Debian based container, see container-create-curl(1).
+ Basic script to build Debian based container, see container-create-curl(1).
debootstrap:
- Basic script to create Debian based container, see
- container-create-debootstrap(1).
+ Basic script to build Debian based container, see
+ container-build-debootstrap(1).
debconf:
- Advanced script to automatically create Debian based container, see
- container-create-debconf(1).
+ Advanced script to automatically build Debian based container, see
+ container-build-debconf(1).
default:
- Symlink (if existing) to a container script which is used if no script was
+ Symlink (if existing) to a build script which is used if no script was
specified. On Debian based system this can be managed through
update-alternatives(1), i.e. 'sudo update-alternatives --config
- container_script'.
+ container_build-script'.
Options
=======
-The following **container create** options are available:
+The following **container build** options are available:
-n, --name='NAME':
Specify container name.
@@ -76,7 +76,7 @@ The following **container create** options are available:
Specify capabilities to drop, see capabilities(7).
-s, --script='SCRIPT':
- Specify container creation script, defaults to 'debootstrap'.
+ Specify container build script, defaults to 'debootstrap'.
-v, --verbose:
Explain what is being done.
@@ -101,21 +101,21 @@ The following **container create** options are available:
Examples
========
-Create example.net container using curl script:
+Build example.net container using curl script:
- sudo container create -n example.net -s curl
+ sudo container build -n example.net -s curl
-Create example.net container using debootstrap script:
+Build example.net container using debootstrap script:
- sudo container create -n example.net -s debootstrap
+ sudo container build -n example.net -s debootstrap
-Create example.net container using debconf script:
+Build example.net container using debconf script:
- sudo container create -n example.net -s debconf
+ sudo container build -n example.net -s debconf
-Create example.net container with the default create script and start it:
+Build example.net container with the default build script and start it:
- sudo container create,start -n example.net
+ sudo container build,start -n example.net
See also
========