-
Notifications
You must be signed in to change notification settings - Fork 14
/
podman-about.xml
51 lines (51 loc) · 2.15 KB
/
podman-about.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?xml version="1.0" encoding="UTF-8"?>
<!-- This file originates from the project https://github.com/openSUSE/doc-kit -->
<!-- This file can be edited downstream. -->
<!DOCTYPE topic
[
<!ENTITY % entities SYSTEM "../common/generic-entities.ent">
%entities;
]>
<!-- refers to legacy doc: <add github link to legacy doc piece, if applicable> -->
<!-- point back to this document with a similar comment added to your legacy doc piece -->
<!-- refer to README.md for file and id naming conventions -->
<!-- metadata is dealt with on the assembly level -->
<topic xml:id="podman-about-introduction"
role="concept" xml:lang="en"
xmlns="http://docbook.org/ns/docbook" version="5.2"
xmlns:its="http://www.w3.org/2005/11/its"
xmlns:xi="http://www.w3.org/2001/XInclude"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:trans="http://docbook.org/ns/transclusion">
<info>
<title>About &podman;</title>
<!-- can be changed via merge in the assembly -->
<!--add author's email address-->
<meta name="maintainer" content="[email protected]" its:translate="no"/>
<abstract>
<!-- can be changed via merge in the assembly -->
<para>
The topic covers an introduction to &podman;.
</para>
</abstract>
</info>
<para>
Podman is a short name for Pod Manager Tool. It is a daemonless container
engine that enables you to run and deploy applications using containers and
container images. Podman provides a command-line interface to manage
containers.
</para>
<para>
As Podman does not have a daemon, it provides integration with systemd.
This makes it possible to control containers via systemd units. You can
create these units for existing containers as well as generate units that
can start containers if they do not exist in the system. Podman can run
systemd inside containers.
</para>
<para>
Podman enables you to organize your containers into pods. Pods share the
same network interface and resources. A typical use case for organizing a
group of containers into a pod is a container that runs a database and a
container with a client that accesses the database.
</para>
</topic>