]> git.proxmox.com Git - pve-docs.git/blame - pct.adoc
add section about container images/templates
[pve-docs.git] / pct.adoc
CommitLineData
0c6b782f
DM
1ifdef::manvolnum[]
2PVE({manvolnum})
3================
38fd0958 4include::attributes.txt[]
0c6b782f
DM
5
6NAME
7----
8
9pct - Tool to manage Linux Containers (LXC) on Proxmox VE
10
11
12SYNOPSYS
13--------
14
15include::pct.1-synopsis.adoc[]
16
17DESCRIPTION
18-----------
19endif::manvolnum[]
20
21ifndef::manvolnum[]
22Proxmox Container Toolkit
23=========================
38fd0958 24include::attributes.txt[]
0c6b782f
DM
25endif::manvolnum[]
26
4a2ae9ed
DM
27
28Containers are a lightweight alternative to fully virtualized
29VMs. Instead of emulating a complete Operating System (OS), containers
30simply use the OS of the host they run on. This implies that all
31containers use the same kernel, and that they can access resources
32from the host directly.
33
34This is great because containers do not waste CPU power nor memory due
35to kernel emulation. Container run-time costs are close to zero and
36usually negligible. But there are also some drawbacks you need to
37consider:
38
39* You can only run Linux based OS inside containers, i.e. it is not
40 possible to run Free BSD or MS Windows inside.
41
42* For security reasons, access to host resources need to be
43 restricted. This is done with AppArmor, SecComp filters and other
44 kernel feature. Be prepared that some syscalls are not allowed
45 inside containers.
46
47{pve} uses https://linuxcontainers.org/[LXC] as underlying container
48technology. We consider LXC as low-level library, which provides
49countless options. It would be to difficult to use those tools
50directly. Instead, we provide a small wrapper called `pct`, the
51"Proxmox Container Toolkit".
52
53The toolkit it tightly coupled with {pve}. That means that it is aware
54of the cluster setup, and it can use the same network and storage
55resources as fully virtualized VMs. You can even use the {pve}
56firewall, or manage containers using the HA framework.
57
58Our primary goal is to offer an environment as one would get from a
59VM, but without the additional overhead. We call this "System
60Containers".
61
70a42028
DM
62NOTE: If you want to run micro-containers (with docker, rct, ...), it
63is best to run them inside a VM.
4a2ae9ed
DM
64
65
66Security Considerations
67-----------------------
68
69Containers use the same kernel as the host, so there is a big attack
70surface for malicious users. You should consider this fact if you
71provide containers to totally untrusted people. In general, fully
72virtualized VM provides better isolation.
73
74The good news is that LXC uses many kernel security features like
75AppArmor, CGroups and PID and user namespaces, which makes containers
76usage quite secure. We distinguish two types of containers:
77
78Privileged containers
79~~~~~~~~~~~~~~~~~~~~~
80
81Security is done by dropping capabilities, using mandatory access
82control (AppArmor), SecComp filters and namespaces. The LXC team
83considers this kind of container as unsafe, and they will not consider
84new container escape exploits to be security issues worthy of a CVE
85and quick fix. So you should use this kind of containers only inside a
86trusted environment, or when no untrusted task is running as root in
87the container.
88
89Unprivileged containers
90~~~~~~~~~~~~~~~~~~~~~~~
91
92This kind of containers use a new kernel feature, called user
93namespaces. The root uid 0 inside the container is mapped to an
94unprivileged user outside the container. This means that most security
95issues (container escape, resource abuse, ...) in those containers
96will affect a random unprivileged user, and so would be a generic
97kernel security bug rather than a LXC issue. LXC people think
98unprivileged containers are safe by design.
99
7fc230db
DM
100
101Configuration
102-------------
103
104The '/etc/pve/lxc/<CTID>.conf' files stores container configuration,
105where '<CTID>' is the numeric ID of the given container. Note that
105bc8f1
DM
106CTIDs < 100 are reserved for internal purposes, and CTIDs need to be
107cluster wide unique. Files are stored inside '/etc/pve/', so they get
7fc230db
DM
108automatically replicated to all other cluster nodes.
109
105bc8f1
DM
110.Example Container Configuration
111----
112ostype: debian
113arch: amd64
114hostname: www
115memory: 512
116swap: 512
117net0: bridge=vmbr0,hwaddr=66:64:66:64:64:36,ip=dhcp,name=eth0,type=veth
118rootfs: local:107/vm-107-disk-1.raw,size=7G
119----
120
7fc230db 121Those configuration files are simple text files, and you can edit them
55fb2a21
DM
122using a normal text editor ('vi', 'nano', ...). This is sometimes
123useful to do small corrections, but keep in mind that you need to
124restart the container to apply such changes.
125
126For that reason, it is usually better to use the 'pct' command to
127generate and modify those files, or do the whole thing using the GUI.
128Our toolkit is smart enough to instantaneously apply most changes to
105bc8f1
DM
129running containers. This feature is called "hot plug", and there is no
130need to restart the container in that case.
7fc230db
DM
131
132File Format
133~~~~~~~~~~~
134
135Container configuration files use a simple colon separated key/value
136format. Each line has the following format:
137
138 # this is a comment
139 OPTION: value
140
141Blank lines in those files are ignored, and lines starting with a '#'
142character are treated as comments and are also ignored.
143
144It is possible to add low-level, LXC style configuration directly, for
145example:
146
147 lxc.init_cmd: /sbin/my_own_init
148
149or
150
151 lxc.init_cmd = /sbin/my_own_init
152
153Those settings are directly passed to the LXC low-level tools.
154
105bc8f1
DM
155Snapshots
156~~~~~~~~~
157
158When you create a snapshot, 'pct' stores the configuration at snapshot
159time into a separate snapshot section within the same configuration
160file. For example, after creating a snapshot called 'testsnapshot',
161your configuration file will look like this:
162
163.Container Configuration with Snapshot
164----
165memory: 512
166swap: 512
167parent: testsnaphot
168...
169
170[testsnaphot]
171memory: 512
172swap: 512
173snaptime: 1457170803
174...
175----
176
177There are a view snapshot related properties like 'parent' and
178'snaptime'. They 'parent' property is used to store the parent/child
179relationship between snapshots. 'snaptime' is the snapshot creation
180time stamp (unix epoch).
7fc230db 181
3f13c1c3
DM
182Guest Operating System Configuration
183~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
184
185We normally try to detect the operating system type inside the
186container, and then modify some files inside the container to make
187them work as expected. Here is a short list of things we do at
188container startup:
189
190set /etc/hostname:: to set the container name
191
192modify /etc/hosts:: allow to lookup the local hostname
193
194network setup:: pass the complete network setup to the container
195
196configure DNS:: pass information about DNS servers
197
198adopt the init system:: for example, fix the number os spawned getty processes
199
200set the root password:: when creating a new container
201
202rewrite ssh_host_keys:: so that each container has unique keys
203
204randomize crontab:: so that cron does not start at same time on all containers
205
206Above task depends on the OS type, so the implementation is different
207for each OS type. You can also disable any modifications by manually
208setting the 'ostype' to 'unmanaged'.
209
210OS type detection is done by testing for certain files inside the
211container:
212
213Ubuntu:: inspect /etc/lsb-release ('DISTRIB_ID=Ubuntu')
214
215Debian:: test /etc/debian_version
216
217Fedora:: test /etc/fedora-release
218
219RedHat or CentOS:: test /etc/redhat-release
220
221ArchLinux:: test /etc/arch-release
222
223Alpine:: test /etc/alpine-release
224
225NOTE: Container start fails is configured 'ostype' differs from auto
226detected type.
227
d61bab51
DM
228
229Container Images
230----------------
231
232Container Images, somtimes also referred as "templates" or
233"appliances", are 'tar' archives which contains everything to run a
234container. You can think of it as a tidy container backup. Like most
235modern container toolkits, 'pct' uses those images when you create a
236new container, for example:
237
238 pct create 999 local:vztmpl/debian-8.0-standard_8.0-1_amd64.tar.gz
239
240Proxmox itself ships a set of basic templates for most common
241operating systems, and you can download them using the 'pveam' (short
242for {pve} Appliance Manager) command line utility. You can also
243download https://www.turnkeylinux.org/[TurnKey Linux] containers using
244that tool (or the graphical user interface).
245
246
70a42028
DM
247Container Storage
248-----------------
249
250Traditional containers use a very simple storage model, only allowing
251a single mount point, the root file system. This was further
252restricted to specific file system types like 'ext4' and 'nfs'.
253Additional mounts are often done by user provided scripts. This turend
254out to be complex and error prone, so we trie to avoid that now.
255
256Our new LXC based container model is more flexible regarding
257storage. First, you can have more than a single mount point. This
258allows you to choose a suitable storage for each application. For
259example, you can use a relatively slow (and thus cheap) storage for
260the container root file system. Then you can use a second mount point
261to mount a very fast, distributed storage for your database
262application.
263
264The second big improvement is that you can use any storage type
265supported by the {pve} storage library. That means that you can store
266your containers on local 'lvmthin' or 'zfs', shared 'iSCSI' storage,
267or even on distributed storage systems like 'ceph'. And it enables us
268to use advanced storage features like snapshots and clones. 'vzdump'
269can also use the snapshots feature to provide consistent container
270backups.
271
272Last but not least, you can also mount local devices directly, or
273mount local directories using bind mounts. That way you can access
274local storage inside containers with zero overhead. Such bind mounts
275also provides an easy way to share data between different containers.
276
4a2ae9ed
DM
277
278Managing Containers with 'pct'
279------------------------------
280
9dfe82f1
DM
281'pct' is the tool to manage Linux Containers on {pve}. You can create
282and destroy containers, and control execution (start, stop, migrate,
283...). You can use pct to set parameters in the associated config file,
284like network configuration or memory.
0c6b782f
DM
285
286CLI Usage Examples
287------------------
288
289Create a container based on a Debian template (provided you downloaded
290the template via the webgui before)
291
292 pct create 100 /var/lib/vz/template/cache/debian-8.0-standard_8.0-1_amd64.tar.gz
293
294Start container 100
295
296 pct start 100
297
298Start a login session via getty
299
300 pct console 100
301
302Enter the LXC namespace and run a shell as root user
303
304 pct enter 100
305
306Display the configuration
307
308 pct config 100
309
310Add a network interface called eth0, bridged to the host bridge vmbr0,
311set the address and gateway, while it's running
312
313 pct set 100 -net0 name=eth0,bridge=vmbr0,ip=192.168.15.147/24,gw=192.168.15.1
314
315Reduce the memory of the container to 512MB
316
317 pct set -memory 512 100
318
319Files
320------
321
9dfe82f1 322'/etc/pve/lxc/<CTID>.conf'::
0c6b782f 323
9dfe82f1 324Configuration file for the container '<CTID>'.
0c6b782f
DM
325
326
327Container Advantages
328--------------------
329
330- Simple, and fully integrated into {pve}. Setup looks similar to a normal
331 VM setup.
332
333 * Storage (ZFS, LVM, NFS, Ceph, ...)
334
335 * Network
336
337 * Authentification
338
339 * Cluster
340
341- Fast: minimal overhead, as fast as bare metal
342
343- High density (perfect for idle workloads)
344
345- REST API
346
347- Direct hardware access
348
349
350Technology Overview
351-------------------
352
353- Integrated into {pve} graphical user interface (GUI)
354
355- LXC (https://linuxcontainers.org/)
356
357- cgmanager for cgroup management
358
359- lxcfs to provive containerized /proc file system
360
361- apparmor
362
363- CRIU: for live migration (planned)
364
365- We use latest available kernels (4.2.X)
366
367- image based deployment (templates)
368
369- Container setup from host (Network, DNS, Storage, ...)
370
371
372ifdef::manvolnum[]
373include::pve-copyright.adoc[]
374endif::manvolnum[]
375
376
377
378
379
380
381