]> git.proxmox.com Git - mirror_lxc.git/blob - doc/lxc.container.conf.sgml.in
Merge pull request #2008 from tych0/share-ns-in-execute
[mirror_lxc.git] / doc / lxc.container.conf.sgml.in
1 <!--
2
3 lxc: linux Container library
4
5 (C) Copyright IBM Corp. 2007, 2008
6
7 Authors:
8 Daniel Lezcano <daniel.lezcano at free.fr>
9
10 This library is free software; you can redistribute it and/or
11 modify it under the terms of the GNU Lesser General Public
12 License as published by the Free Software Foundation; either
13 version 2.1 of the License, or (at your option) any later version.
14
15 This library is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 Lesser General Public License for more details.
19
20 You should have received a copy of the GNU Lesser General Public
21 License along with this library; if not, write to the Free Software
22 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23
24 -->
25
26 <!DOCTYPE refentry PUBLIC @docdtd@ [
27
28 <!ENTITY seealso SYSTEM "@builddir@/see_also.sgml">
29 ]>
30
31 <refentry>
32
33 <docinfo><date>@LXC_GENERATE_DATE@</date></docinfo>
34
35 <refmeta>
36 <refentrytitle>lxc.container.conf</refentrytitle>
37 <manvolnum>5</manvolnum>
38 </refmeta>
39
40 <refnamediv>
41 <refname>lxc.container.conf</refname>
42
43 <refpurpose>
44 LXC container configuration file
45 </refpurpose>
46 </refnamediv>
47
48 <refsect1>
49 <title>Description</title>
50
51 <para>
52 LXC is the well-known and heavily tested low-level Linux container
53 runtime. It is in active development since 2008 and has proven itself in
54 critical production environments world-wide. Some of its core contributors
55 are the same people that helped to implement various well-known
56 containerization features inside the Linux kernel.
57 </para>
58
59 <para>
60 LXC's main focus is system containers. That is, containers which offer an
61 environment as close as possible as the one you'd get from a VM but
62 without the overhead that comes with running a separate kernel and
63 simulating all the hardware.
64 </para>
65
66 <para>
67 This is achieved through a combination of kernel security features such as
68 namespaces, mandatory access control and control groups.
69 </para>
70
71 <para>
72 LXC has supports unprivileged containers. Unprivileged containers are
73 containers that are run without any privilege. This requires support for
74 user namespaces in the kernel that the container is run on. LXC was the
75 first runtime to support unprivileged containers after user namespaces
76 were merged into the mainline kernel.
77 </para>
78
79 <para>
80 In essence, user namespaces isolate given sets of UIDs and GIDs. This is
81 achieved by establishing a mapping between a range of UIDs and GIDs on the
82 host to a different (unprivileged) range of UIDs and GIDs in the
83 container. The kernel will translate this mapping in such a way that
84 inside the container all UIDs and GIDs appear as you would expect from the
85 host whereas on the host these UIDs and GIDs are in fact unprivileged. For
86 example, a process running as UID and GID 0 inside the container might
87 appear as UID and GID 100000 on the host. The implementation and working
88 details can be gathered from the corresponding user namespace man page.
89 UID and GID mappings can be defined with the <option>lxc.idmap</option>
90 key.
91 </para>
92
93 <para>
94 Linux containers are defined with a simple configuration file. Each
95 option in the configuration file has the form <command>key =
96 value</command> fitting in one line. The "#" character means the line is a
97 comment. List options, like capabilities and cgroups options, can be used
98 with no value to clear any previously defined values of that option.
99 </para>
100
101 <para>
102 LXC namespaces configuration keys by using single dots. This means complex
103 configuration keys such as <option>lxc.net.0</option> expose various
104 subkeys such as <option>lxc.net.0.type</option>,
105 <option>lxc.net.0.link</option>, <option>lxc.net.0.ipv6.address</option>, and
106 others for even more fine-grained configuration.
107 </para>
108
109 <refsect2>
110 <title>Configuration</title>
111 <para>
112 In order to ease administration of multiple related containers, it is
113 possible to have a container configuration file cause another file to be
114 loaded. For instance, network configuration can be defined in one common
115 file which is included by multiple containers. Then, if the containers
116 are moved to another host, only one file may need to be updated.
117 </para>
118
119 <variablelist>
120 <varlistentry>
121 <term>
122 <option>lxc.include</option>
123 </term>
124 <listitem>
125 <para>
126 Specify the file to be included. The included file must be
127 in the same valid lxc configuration file format.
128 </para>
129 </listitem>
130 </varlistentry>
131 </variablelist>
132 </refsect2>
133
134 <refsect2>
135 <title>Architecture</title>
136 <para>
137 Allows one to set the architecture for the container. For example, set a
138 32bits architecture for a container running 32bits binaries on a 64bits
139 host. This fixes the container scripts which rely on the architecture to
140 do some work like downloading the packages.
141 </para>
142
143 <variablelist>
144 <varlistentry>
145 <term>
146 <option>lxc.arch</option>
147 </term>
148 <listitem>
149 <para>
150 Specify the architecture for the container.
151 </para>
152 <para>
153 Some valid options are
154 <option>x86</option>,
155 <option>i686</option>,
156 <option>x86_64</option>,
157 <option>amd64</option>
158 </para>
159 </listitem>
160 </varlistentry>
161 </variablelist>
162
163 </refsect2>
164
165 <refsect2>
166 <title>Hostname</title>
167 <para>
168 The utsname section defines the hostname to be set for the container.
169 That means the container can set its own hostname without changing the
170 one from the system. That makes the hostname private for the container.
171 </para>
172 <variablelist>
173 <varlistentry>
174 <term>
175 <option>lxc.uts.name</option>
176 </term>
177 <listitem>
178 <para>
179 specify the hostname for the container
180 </para>
181 </listitem>
182 </varlistentry>
183 </variablelist>
184 </refsect2>
185
186 <refsect2>
187 <title>Halt signal</title>
188 <para>
189 Allows one to specify signal name or number sent to the container's
190 init process to cleanly shutdown the container. Different init systems
191 could use different signals to perform clean shutdown sequence. This
192 option allows the signal to be specified in kill(1) fashion, e.g.
193 SIGPWR, SIGRTMIN+14, SIGRTMAX-10 or plain number. The default signal is
194 SIGPWR.
195 </para>
196 <variablelist>
197 <varlistentry>
198 <term>
199 <option>lxc.signal.halt</option>
200 </term>
201 <listitem>
202 <para>
203 specify the signal used to halt the container
204 </para>
205 </listitem>
206 </varlistentry>
207 </variablelist>
208 </refsect2>
209
210 <refsect2>
211 <title>Reboot signal</title>
212 <para>
213 Allows one to specify signal name or number to reboot the container.
214 This option allows signal to be specified in kill(1) fashion, e.g.
215 SIGTERM, SIGRTMIN+14, SIGRTMAX-10 or plain number. The default signal
216 is SIGINT.
217 </para>
218 <variablelist>
219 <varlistentry>
220 <term>
221 <option>lxc.signal.reboot</option>
222 </term>
223 <listitem>
224 <para>
225 specify the signal used to reboot the container
226 </para>
227 </listitem>
228 </varlistentry>
229 </variablelist>
230 </refsect2>
231
232 <refsect2>
233 <title>Stop signal</title>
234 <para>
235 Allows one to specify signal name or number to forcibly shutdown the
236 container. This option allows signal to be specified in kill(1) fashion,
237 e.g. SIGKILL, SIGRTMIN+14, SIGRTMAX-10 or plain number. The default
238 signal is SIGKILL.
239 </para>
240 <variablelist>
241 <varlistentry>
242 <term>
243 <option>lxc.signal.stop</option>
244 </term>
245 <listitem>
246 <para>
247 specify the signal used to stop the container
248 </para>
249 </listitem>
250 </varlistentry>
251 </variablelist>
252 </refsect2>
253
254 <refsect2>
255 <title>Init command</title>
256 <para>
257 Sets the command to use as the init system for the containers.
258 </para>
259 <variablelist>
260 <varlistentry>
261 <term>
262 <option>lxc.execute.cmd</option>
263 </term>
264 <listitem>
265 <para>
266 Absolute path from container rootfs to the binary to run by default. This
267 mostly makes sense for <command>lxc-execute</command>.
268 </para>
269 </listitem>
270 </varlistentry>
271 </variablelist>
272 <variablelist>
273 <varlistentry>
274 <term>
275 <option>lxc.init.cmd</option>
276 </term>
277 <listitem>
278 <para>
279 Absolute path from container rootfs to the binary to use as init. This
280 mostly makes sense for <command>lxc-start</command>. Default is <command>/sbin/init</command>.
281 </para>
282 </listitem>
283 </varlistentry>
284 </variablelist>
285 </refsect2>
286
287 <refsect2>
288 <title>Init working directory</title>
289 <para>
290 Sets the absolute path inside the container as the working directory for the containers.
291 LXC will switch to this directory before executing init.
292 </para>
293 <variablelist>
294 <varlistentry>
295 <term>
296 <option>lxc.init.cwd</option>
297 </term>
298 <listitem>
299 <para>
300 Absolute path inside the container to use as the working directory.
301 </para>
302 </listitem>
303 </varlistentry>
304 </variablelist>
305 </refsect2>
306
307 <refsect2>
308 <title>Init ID</title>
309 <para>
310 Sets the UID/GID to use for the init system, and subsequent commands.
311 Note that using a non-root UID when booting a system container will
312 likely not work due to missing privileges. Setting the UID/GID is mostly
313 useful when running application containers.
314
315 Defaults to: UID(0), GID(0)
316 </para>
317 <variablelist>
318 <varlistentry>
319 <term>
320 <option>lxc.init.uid</option>
321 </term>
322 <listitem>
323 <para>
324 UID to use for init.
325 </para>
326 </listitem>
327 </varlistentry>
328 <varlistentry>
329 <term>
330 <option>lxc.init.gid</option>
331 </term>
332 <listitem>
333 <para>
334 GID to use for init.
335 </para>
336 </listitem>
337 </varlistentry>
338 </variablelist>
339 </refsect2>
340
341 <refsect2>
342 <title>Proc</title>
343 <para>
344 Configure proc filesystem for the container.
345 </para>
346 <variablelist>
347 <varlistentry>
348 <term>
349 <option>lxc.proc.[proc file name]</option>
350 </term>
351 <listitem>
352 <para>
353 Specify the proc file name to be set. The file name available
354 are those listed under /proc/PID/.
355 Example:
356 </para>
357 <programlisting>
358 lxc.proc.oom_score_adj = 10
359 </programlisting>
360 </listitem>
361 </varlistentry>
362 </variablelist>
363 </refsect2>
364
365 <refsect2>
366 <title>Ephemeral</title>
367 <para>
368 Allows one to specify whether a container will be destroyed on shutdown.
369 </para>
370 <variablelist>
371 <varlistentry>
372 <term>
373 <option>lxc.ephemeral</option>
374 </term>
375 <listitem>
376 <para>
377 The only allowed values are 0 and 1. Set this to 1 to destroy a
378 container on shutdown.
379 </para>
380 </listitem>
381 </varlistentry>
382 </variablelist>
383 </refsect2>
384
385 <refsect2>
386 <title>Network</title>
387 <para>
388 The network section defines how the network is virtualized in
389 the container. The network virtualization acts at layer
390 two. In order to use the network virtualization, parameters
391 must be specified to define the network interfaces of the
392 container. Several virtual interfaces can be assigned and used
393 in a container even if the system has only one physical
394 network interface.
395 </para>
396 <variablelist>
397 <varlistentry>
398 <term>
399 <option>lxc.net</option>
400 </term>
401 <listitem>
402 <para>
403 may be used without a value to clear all previous network options.
404 </para>
405 </listitem>
406 </varlistentry>
407 <varlistentry>
408 <term>
409 <option>lxc.net.[i].type</option>
410 </term>
411 <listitem>
412 <para>
413 specify what kind of network virtualization to be used
414 for the container.
415 Multiple networks can be specified by using an additional index
416 <option>i</option>
417 after all <option>lxc.net.*</option> keys. For example,
418 <option>lxc.net.0.type = veth</option> and
419 <option>lxc.net.1.type = veth</option> specify two different
420 networks of the same type. All keys sharing the same index
421 <option>i</option> will be treated as belonging to the same
422 network. For example, <option>lxc.net.0.link = br0</option>
423 will belong to <option>lxc.net.0.type</option>.
424 Currently, the different virtualization types can be:
425 </para>
426
427 <para>
428 <option>none:</option> will cause the container to share
429 the host's network namespace. This means the host
430 network devices are usable in the container. It also
431 means that if both the container and host have upstart as
432 init, 'halt' in a container (for instance) will shut down the
433 host.
434 </para>
435
436 <para>
437 <option>empty:</option> will create only the loopback
438 interface.
439 </para>
440
441 <para>
442 <option>veth:</option> a virtual ethernet pair
443 device is created with one side assigned to the container
444 and the other side attached to a bridge specified by
445 the <option>lxc.net.[i].link</option> option.
446 If the bridge is not specified, then the veth pair device
447 will be created but not attached to any bridge.
448 Otherwise, the bridge has to be created on the system
449 before starting the container.
450 <command>lxc</command> won't handle any
451 configuration outside of the container.
452 By default, <command>lxc</command> chooses a name for the
453 network device belonging to the outside of the
454 container, but if you wish to handle
455 this name yourselves, you can tell <command>lxc</command>
456 to set a specific name with
457 the <option>lxc.net.[i].veth.pair</option> option (except for
458 unprivileged containers where this option is ignored for security
459 reasons).
460 </para>
461
462 <para>
463 <option>vlan:</option> a vlan interface is linked with
464 the interface specified by
465 the <option>lxc.net.[i].link</option> and assigned to
466 the container. The vlan identifier is specified with the
467 option <option>lxc.net.[i].vlan.id</option>.
468 </para>
469
470 <para>
471 <option>macvlan:</option> a macvlan interface is linked
472 with the interface specified by
473 the <option>lxc.net.[i].link</option> and assigned to
474 the container.
475 <option>lxc.net.[i].macvlan.mode</option> specifies the
476 mode the macvlan will use to communicate between
477 different macvlan on the same upper device. The accepted
478 modes are <option>private</option>, <option>vepa</option>,
479 <option>bridge</option> and <option>passthru</option>.
480 In <option>private</option> mode, the device never
481 communicates with any other device on the same upper_dev (default).
482 In <option>vepa</option> mode, the new Virtual Ethernet Port
483 Aggregator (VEPA) mode, it assumes that the adjacent
484 bridge returns all frames where both source and
485 destination are local to the macvlan port, i.e. the
486 bridge is set up as a reflective relay. Broadcast
487 frames coming in from the upper_dev get flooded to all
488 macvlan interfaces in VEPA mode, local frames are not
489 delivered locally. In <option>bridge</option> mode, it
490 provides the behavior of a simple bridge between
491 different macvlan interfaces on the same port. Frames
492 from one interface to another one get delivered directly
493 and are not sent out externally. Broadcast frames get
494 flooded to all other bridge ports and to the external
495 interface, but when they come back from a reflective
496 relay, we don't deliver them again. Since we know all
497 the MAC addresses, the macvlan bridge mode does not
498 require learning or STP like the bridge module does. In
499 <option>passthru</option> mode, all frames received by
500 the physical interface are forwarded to the macvlan
501 interface. Only one macvlan interface in <option>passthru</option>
502 mode is possible for one physical interface.
503 </para>
504
505 <para>
506 <option>phys:</option> an already existing interface
507 specified by the <option>lxc.net.[i].link</option> is
508 assigned to the container.
509 </para>
510 </listitem>
511 </varlistentry>
512
513 <varlistentry>
514 <term>
515 <option>lxc.net.[i].flags</option>
516 </term>
517 <listitem>
518 <para>
519 Specify an action to do for the network.
520 </para>
521
522 <para><option>up:</option> activates the interface.
523 </para>
524 </listitem>
525 </varlistentry>
526
527 <varlistentry>
528 <term>
529 <option>lxc.net.[i].link</option>
530 </term>
531 <listitem>
532 <para>
533 Specify the interface to be used for real network traffic.
534 </para>
535 </listitem>
536 </varlistentry>
537
538 <varlistentry>
539 <term>
540 <option>lxc.net.[i].mtu</option>
541 </term>
542 <listitem>
543 <para>
544 Specify the maximum transfer unit for this interface.
545 </para>
546 </listitem>
547 </varlistentry>
548
549 <varlistentry>
550 <term>
551 <option>lxc.net.[i].name</option>
552 </term>
553 <listitem>
554 <para>
555 The interface name is dynamically allocated, but if another name
556 is needed because the configuration files being used by the
557 container use a generic name, eg. eth0, this option will rename
558 the interface in the container.
559 </para>
560 </listitem>
561 </varlistentry>
562
563 <varlistentry>
564 <term>
565 <option>lxc.net.[i].hwaddr</option>
566 </term>
567 <listitem>
568 <para>
569 The interface mac address is dynamically allocated by default to
570 the virtual interface, but in some cases, this is needed to
571 resolve a mac address conflict or to always have the same
572 link-local ipv6 address. Any "x" in address will be replaced by
573 random value, this allows setting hwaddr templates.
574 </para>
575 </listitem>
576 </varlistentry>
577
578 <varlistentry>
579 <term>
580 <option>lxc.net.[i].ipv4.address</option>
581 </term>
582 <listitem>
583 <para>
584 Specify the ipv4 address to assign to the virtualized interface.
585 Several lines specify several ipv4 addresses. The address is in
586 format x.y.z.t/m, eg. 192.168.1.123/24.
587 </para>
588 </listitem>
589 </varlistentry>
590
591 <varlistentry>
592 <term>
593 <option>lxc.net.[i].ipv4.gateway</option>
594 </term>
595 <listitem>
596 <para>
597 Specify the ipv4 address to use as the gateway inside the
598 container. The address is in format x.y.z.t, eg. 192.168.1.123.
599
600 Can also have the special value <option>auto</option>,
601 which means to take the primary address from the bridge
602 interface (as specified by the
603 <option>lxc.net.[i].link</option> option) and use that as
604 the gateway. <option>auto</option> is only available when
605 using the <option>veth</option> and
606 <option>macvlan</option> network types.
607 </para>
608 </listitem>
609 </varlistentry>
610
611 <varlistentry>
612 <term>
613 <option>lxc.net.[i].ipv6.address</option>
614 </term>
615 <listitem>
616 <para>
617 Specify the ipv6 address to assign to the virtualized
618 interface. Several lines specify several ipv6 addresses. The
619 address is in format x::y/m, eg.
620 2003:db8:1:0:214:1234:fe0b:3596/64
621 </para>
622 </listitem>
623 </varlistentry>
624
625 <varlistentry>
626 <term>
627 <option>lxc.net.[i].ipv6.gateway</option>
628 </term>
629 <listitem>
630 <para>
631 Specify the ipv6 address to use as the gateway inside the
632 container. The address is in format x::y, eg. 2003:db8:1:0::1
633
634 Can also have the special value <option>auto</option>,
635 which means to take the primary address from the bridge
636 interface (as specified by the
637 <option>lxc.net.[i].link</option> option) and use that as
638 the gateway. <option>auto</option> is only available when
639 using the <option>veth</option> and
640 <option>macvlan</option> network types.
641 </para>
642 </listitem>
643 </varlistentry>
644
645 <varlistentry>
646 <term>
647 <option>lxc.net.[i].script.up</option>
648 </term>
649 <listitem>
650 <para>
651 Add a configuration option to specify a script to be
652 executed after creating and configuring the network used
653 from the host side.
654 </para>
655
656 <para>
657 In addition to the information available to all hooks. The
658 following information is provided to the script:
659 <itemizedlist>
660 <listitem>
661 <para>
662 LXC_HOOK_TYPE: the hook type. This is either 'up' or 'down'.
663 </para>
664 </listitem>
665
666 <listitem>
667 <para>
668 LXC_HOOK_SECTION: the section type 'net'.
669 </para>
670 </listitem>
671
672 <listitem>
673 <para>
674 LXC_NET_TYPE: the network type. This is one of the valid
675 network types listed here (e.g. 'macvlan', 'veth').
676 </para>
677 </listitem>
678
679 <listitem>
680 <para>
681 LXC_NET_PARENT: the parent device on the host. This is only
682 set for network types 'mavclan', 'veth', 'phys'.
683 </para>
684 </listitem>
685
686 <listitem>
687 <para>
688 LXC_NET_PEER: the name of the peer device on the host. This is
689 only set for 'veth' network types. Note that this information
690 is only available when <option>lxc.hook.version</option> is set
691 to 1.
692 </para>
693 </listitem>
694 </itemizedlist>
695
696 Whether this information is provided in the form of environment
697 variables or as arguments to the script depends on the value of
698 <option>lxc.hook.version</option>. If set to 1 then information is
699 provided in the form of environment variables. If set to 0
700 information is provided as arguments to the script.
701 </para>
702
703 <para>
704 Standard output from the script is logged at debug level.
705 Standard error is not logged, but can be captured by the
706 hook redirecting its standard error to standard output.
707 </para>
708 </listitem>
709 </varlistentry>
710
711 <varlistentry>
712 <term>
713 <option>lxc.net.[i].script.down</option>
714 </term>
715 <listitem>
716 <para>
717 Add a configuration option to specify a script to be
718 executed before destroying the network used from the
719 host side.
720 </para>
721
722 <para>
723 In addition to the information available to all hooks. The
724 following information is provided to the script:
725 <itemizedlist>
726 <listitem>
727 <para>
728 LXC_HOOK_TYPE: the hook type. This is either 'up' or 'down'.
729 </para>
730 </listitem>
731
732 <listitem>
733 <para>
734 LXC_HOOK_SECTION: the section type 'net'.
735 </para>
736 </listitem>
737
738 <listitem>
739 <para>
740 LXC_NET_TYPE: the network type. This is one of the valid
741 network types listed here (e.g. 'macvlan', 'veth').
742 </para>
743 </listitem>
744
745 <listitem>
746 <para>
747 LXC_NET_PARENT: the parent device on the host. This is only
748 set for network types 'mavclan', 'veth', 'phys'.
749 </para>
750 </listitem>
751
752 <listitem>
753 <para>
754 LXC_NET_PEER: the name of the peer device on the host. This is
755 only set for 'veth' network types. Note that this information
756 is only available when <option>lxc.hook.version</option> is set
757 to 1.
758 </para>
759 </listitem>
760 </itemizedlist>
761
762 Whether this information is provided in the form of environment
763 variables or as arguments to the script depends on the value of
764 <option>lxc.hook.version</option>. If set to 1 then information is
765 provided in the form of environment variables. If set to 0
766 information is provided as arguments to the script.
767 </para>
768
769 <para>
770 Standard output from the script is logged at debug level.
771 Standard error is not logged, but can be captured by the
772 hook redirecting its standard error to standard output.
773 </para>
774 </listitem>
775 </varlistentry>
776 </variablelist>
777 </refsect2>
778
779 <refsect2>
780 <title>New pseudo tty instance (devpts)</title>
781 <para>
782 For stricter isolation the container can have its own private
783 instance of the pseudo tty.
784 </para>
785 <variablelist>
786 <varlistentry>
787 <term>
788 <option>lxc.pty.max</option>
789 </term>
790 <listitem>
791 <para>
792 If set, the container will have a new pseudo tty
793 instance, making this private to it. The value specifies
794 the maximum number of pseudo ttys allowed for a pts
795 instance (this limitation is not implemented yet).
796 </para>
797 </listitem>
798 </varlistentry>
799 </variablelist>
800 </refsect2>
801
802 <refsect2>
803 <title>Container system console</title>
804 <para>
805 If the container is configured with a root filesystem and the
806 inittab file is setup to use the console, you may want to specify
807 where the output of this console goes.
808 </para>
809 <variablelist>
810
811 <varlistentry>
812 <term>
813 <option>lxc.console.buffer.size</option>
814 </term>
815 <listitem>
816 <para>
817 Setting this option instructs liblxc to allocate an in-memory
818 ringbuffer. The container's console output will be written to the
819 ringbuffer. Note that ringbuffer must be at least as big as a
820 standard page size. When passed a value smaller than a single page
821 size liblxc will allocate a ringbuffer of a single page size. A page
822 size is usually 4kB.
823
824 The keyword 'auto' will cause liblxc to allocate a ringbuffer of
825 128kB.
826
827 When manually specifying a size for the ringbuffer the value should
828 be a power of 2 when converted to bytes. Valid size prefixes are
829 'kB', 'MB', 'GB'. (Note that all conversions are based on multiples
830 of 1024. That means 'kb' == 'KiB', 'MB' == 'MiB', 'GB' == 'GiB'.)
831 </para>
832 </listitem>
833 </varlistentry>
834
835 <varlistentry>
836 <term>
837 <option>lxc.console.buffer.logfile</option>
838 </term>
839 <listitem>
840 <para>
841 Setting this option instructs liblxc to write the in-memory
842 ringbuffer to disk. For performance reasons liblxc will only write
843 the in-memory ringbuffer to disk when requested. Note that the this
844 option is only used by liblxc when
845 <option>lxc.console.buffer.size</option> is set.
846
847 By default liblxc will dump the contents of the in-memory ringbuffer
848 to disk when the container terminates. This allows users to diagnose
849 boot failures when the container crashed before an API request to
850 retrieve the in-memory ringbuffer could be sent or handled.
851 </para>
852 </listitem>
853 </varlistentry>
854
855 <varlistentry>
856 <term>
857 <option>lxc.console.logfile</option>
858 </term>
859 <listitem>
860 <para>
861 Specify a path to a file where the console output will be written.
862 Note that in contrast to the on-disk ringbuffer logfile this file
863 will keep growing potentially filling up the users disks if not
864 rotated and deleted. This problem can also be avoided by using the
865 in-memory ringbuffer options
866 <option>lxc.console.buffer.size</option> and
867 <option>lxc.console.buffer.logfile</option>.
868 </para>
869 </listitem>
870 </varlistentry>
871
872 <varlistentry>
873 <term>
874 <option>lxc.console.rotate</option>
875 </term>
876 <listitem>
877 <para>
878 Whether to rotate the console logfile specified in
879 <option>lxc.console.logfile</option>. Users can send an API
880 request to rotate the logfile. Note that the old logfile will have
881 the same name as the original with the suffix ".1" appended.
882
883 Users wishing to prevent the console log file from filling the
884 disk should rotate the logfile and delete it if unneeded. This
885 problem can also be avoided by using the in-memory ringbuffer
886 options <option>lxc.console.buffer.size</option> and
887 <option>lxc.console.buffer.logfile</option>.
888 </para>
889 </listitem>
890 </varlistentry>
891
892 <varlistentry>
893 <term>
894 <option>lxc.console.path</option>
895 </term>
896 <listitem>
897 <para>
898 Specify a path to a device to which the console will be
899 attached. The keyword 'none' will simply disable the
900 console. Note, when specifying 'none' and creating a device node
901 for the console in the container at /dev/console or bind-mounting
902 the hosts's /dev/console into the container at /dev/console the
903 container will have direct access to the hosts's /dev/console.
904 This is dangerous when the container has write access to the
905 device and should thus be used with caution.
906 </para>
907 </listitem>
908 </varlistentry>
909 </variablelist>
910 </refsect2>
911
912 <refsect2>
913 <title>Console through the ttys</title>
914 <para>
915 This option is useful if the container is configured with a root
916 filesystem and the inittab file is setup to launch a getty on the
917 ttys. The option specifies the number of ttys to be available for
918 the container. The number of gettys in the inittab file of the
919 container should not be greater than the number of ttys specified
920 in this option, otherwise the excess getty sessions will die and
921 respawn indefinitely giving annoying messages on the console or in
922 <filename>/var/log/messages</filename>.
923 </para>
924 <variablelist>
925 <varlistentry>
926 <term>
927 <option>lxc.tty.max</option>
928 </term>
929 <listitem>
930 <para>
931 Specify the number of tty to make available to the
932 container.
933 </para>
934 </listitem>
935 </varlistentry>
936 </variablelist>
937 </refsect2>
938
939 <refsect2>
940 <title>Console devices location</title>
941 <para>
942 LXC consoles are provided through Unix98 PTYs created on the
943 host and bind-mounted over the expected devices in the container.
944 By default, they are bind-mounted over <filename>/dev/console</filename>
945 and <filename>/dev/ttyN</filename>. This can prevent package upgrades
946 in the guest. Therefore you can specify a directory location (under
947 <filename>/dev</filename> under which LXC will create the files and
948 bind-mount over them. These will then be symbolically linked to
949 <filename>/dev/console</filename> and <filename>/dev/ttyN</filename>.
950 A package upgrade can then succeed as it is able to remove and replace
951 the symbolic links.
952 </para>
953 <variablelist>
954 <varlistentry>
955 <term>
956 <option>lxc.tty.dir</option>
957 </term>
958 <listitem>
959 <para>
960 Specify a directory under <filename>/dev</filename>
961 under which to create the container console devices. Note that LXC
962 will move any bind-mounts or device nodes for /dev/console into
963 this directory.
964 </para>
965 </listitem>
966 </varlistentry>
967 </variablelist>
968 </refsect2>
969
970 <refsect2>
971 <title>/dev directory</title>
972 <para>
973 By default, lxc creates a few symbolic links (fd,stdin,stdout,stderr)
974 in the container's <filename>/dev</filename> directory but does not
975 automatically create device node entries. This allows the container's
976 <filename>/dev</filename> to be set up as needed in the container
977 rootfs. If lxc.autodev is set to 1, then after mounting the container's
978 rootfs LXC will mount a fresh tmpfs under <filename>/dev</filename>
979 (limited to 500k) and fill in a minimal set of initial devices.
980 This is generally required when starting a container containing
981 a "systemd" based "init" but may be optional at other times. Additional
982 devices in the containers /dev directory may be created through the
983 use of the <option>lxc.hook.autodev</option> hook.
984 </para>
985 <variablelist>
986 <varlistentry>
987 <term>
988 <option>lxc.autodev</option>
989 </term>
990 <listitem>
991 <para>
992 Set this to 0 to stop LXC from mounting and populating a minimal
993 <filename>/dev</filename> when starting the container.
994 </para>
995 </listitem>
996 </varlistentry>
997 </variablelist>
998 </refsect2>
999
1000 <refsect2>
1001 <title>Mount points</title>
1002 <para>
1003 The mount points section specifies the different places to be
1004 mounted. These mount points will be private to the container
1005 and won't be visible by the processes running outside of the
1006 container. This is useful to mount /etc, /var or /home for
1007 examples.
1008 </para>
1009 <para>
1010 NOTE - LXC will generally ensure that mount targets and relative
1011 bind-mount sources are properly confined under the container
1012 root, to avoid attacks involving over-mounting host directories
1013 and files. (Symbolic links in absolute mount sources are ignored)
1014 However, if the container configuration first mounts a directory which
1015 is under the control of the container user, such as /home/joe, into
1016 the container at some <filename>path</filename>, and then mounts
1017 under <filename>path</filename>, then a TOCTTOU attack would be
1018 possible where the container user modifies a symbolic link under
1019 his home directory at just the right time.
1020 </para>
1021 <variablelist>
1022 <varlistentry>
1023 <term>
1024 <option>lxc.mount.fstab</option>
1025 </term>
1026 <listitem>
1027 <para>
1028 specify a file location in
1029 the <filename>fstab</filename> format, containing the
1030 mount information. The mount target location can and in
1031 most cases should be a relative path, which will become
1032 relative to the mounted container root. For instance,
1033 </para>
1034 <programlisting>
1035 proc proc proc nodev,noexec,nosuid 0 0
1036 </programlisting>
1037 <para>
1038 Will mount a proc filesystem under the container's /proc,
1039 regardless of where the root filesystem comes from. This
1040 is resilient to block device backed filesystems as well as
1041 container cloning.
1042 </para>
1043 <para>
1044 Note that when mounting a filesystem from an
1045 image file or block device the third field (fs_vfstype)
1046 cannot be auto as with
1047 <citerefentry>
1048 <refentrytitle>mount</refentrytitle>
1049 <manvolnum>8</manvolnum>
1050 </citerefentry>
1051 but must be explicitly specified.
1052 </para>
1053 </listitem>
1054 </varlistentry>
1055
1056 <varlistentry>
1057 <term>
1058 <option>lxc.mount.entry</option>
1059 </term>
1060 <listitem>
1061 <para>
1062 specify a mount point corresponding to a line in the
1063 fstab format.
1064
1065 Moreover lxc add two options to mount.
1066 <option>optional</option> don't fail if mount does not work.
1067 <option>create=dir</option> or <option>create=file</option>
1068 to create dir (or file) when the point will be mounted.
1069 </para>
1070 </listitem>
1071 </varlistentry>
1072
1073 <varlistentry>
1074 <term>
1075 <option>lxc.mount.auto</option>
1076 </term>
1077 <listitem>
1078 <para>
1079 specify which standard kernel file systems should be
1080 automatically mounted. This may dramatically simplify
1081 the configuration. The file systems are:
1082 </para>
1083 <itemizedlist>
1084 <listitem>
1085 <para>
1086 <option>proc:mixed</option> (or <option>proc</option>):
1087 mount <filename>/proc</filename> as read-write, but
1088 remount <filename>/proc/sys</filename> and
1089 <filename>/proc/sysrq-trigger</filename> read-only
1090 for security / container isolation purposes.
1091 </para>
1092 </listitem>
1093 <listitem>
1094 <para>
1095 <option>proc:rw</option>: mount
1096 <filename>/proc</filename> as read-write
1097 </para>
1098 </listitem>
1099 <listitem>
1100 <para>
1101 <option>sys:mixed</option> (or <option>sys</option>):
1102 mount <filename>/sys</filename> as read-only but with
1103 /sys/devices/virtual/net writable.
1104 </para>
1105 </listitem>
1106 <listitem>
1107 <para>
1108 <option>sys:ro</option>:
1109 mount <filename>/sys</filename> as read-only
1110 for security / container isolation purposes.
1111 </para>
1112 </listitem>
1113 <listitem>
1114 <para>
1115 <option>sys:rw</option>: mount
1116 <filename>/sys</filename> as read-write
1117 </para>
1118 </listitem>
1119 <listitem>
1120 <para>
1121 <option>cgroup:mixed</option>:
1122 mount a tmpfs to <filename>/sys/fs/cgroup</filename>,
1123 create directories for all hierarchies to which
1124 the container is added, create subdirectories
1125 there with the name of the cgroup, and bind-mount
1126 the container's own cgroup into that directory.
1127 The container will be able to write to its own
1128 cgroup directory, but not the parents, since they
1129 will be remounted read-only.
1130 </para>
1131 </listitem>
1132 <listitem>
1133 <para>
1134 <option>cgroup:ro</option>: similar to
1135 <option>cgroup:mixed</option>, but everything will
1136 be mounted read-only.
1137 </para>
1138 </listitem>
1139 <listitem>
1140 <para>
1141 <option>cgroup:rw</option>: similar to
1142 <option>cgroup:mixed</option>, but everything will
1143 be mounted read-write. Note that the paths leading
1144 up to the container's own cgroup will be writable,
1145 but will not be a cgroup filesystem but just part
1146 of the tmpfs of <filename>/sys/fs/cgroup</filename>
1147 </para>
1148 </listitem>
1149 <listitem>
1150 <para>
1151 <option>cgroup</option> (without specifier):
1152 defaults to <option>cgroup:rw</option> if the
1153 container retains the CAP_SYS_ADMIN capability,
1154 <option>cgroup:mixed</option> otherwise.
1155 </para>
1156 </listitem>
1157 <listitem>
1158 <para>
1159 <option>cgroup-full:mixed</option>:
1160 mount a tmpfs to <filename>/sys/fs/cgroup</filename>,
1161 create directories for all hierarchies to which
1162 the container is added, bind-mount the hierarchies
1163 from the host to the container and make everything
1164 read-only except the container's own cgroup. Note
1165 that compared to <option>cgroup</option>, where
1166 all paths leading up to the container's own cgroup
1167 are just simple directories in the underlying
1168 tmpfs, here
1169 <filename>/sys/fs/cgroup/$hierarchy</filename>
1170 will contain the host's full cgroup hierarchy,
1171 albeit read-only outside the container's own cgroup.
1172 This may leak quite a bit of information into the
1173 container.
1174 </para>
1175 </listitem>
1176 <listitem>
1177 <para>
1178 <option>cgroup-full:ro</option>: similar to
1179 <option>cgroup-full:mixed</option>, but everything
1180 will be mounted read-only.
1181 </para>
1182 </listitem>
1183 <listitem>
1184 <para>
1185 <option>cgroup-full:rw</option>: similar to
1186 <option>cgroup-full:mixed</option>, but everything
1187 will be mounted read-write. Note that in this case,
1188 the container may escape its own cgroup. (Note also
1189 that if the container has CAP_SYS_ADMIN support
1190 and can mount the cgroup filesystem itself, it may
1191 do so anyway.)
1192 </para>
1193 </listitem>
1194 <listitem>
1195 <para>
1196 <option>cgroup-full</option> (without specifier):
1197 defaults to <option>cgroup-full:rw</option> if the
1198 container retains the CAP_SYS_ADMIN capability,
1199 <option>cgroup-full:mixed</option> otherwise.
1200 </para>
1201 </listitem>
1202 </itemizedlist>
1203 <para>
1204 If cgroup namespaces are enabled, then any <option>cgroup</option>
1205 auto-mounting request will be ignored, since the container can
1206 mount the filesystems itself, and automounting can confuse the
1207 container init.
1208 </para>
1209 <para>
1210 Note that if automatic mounting of the cgroup filesystem
1211 is enabled, the tmpfs under
1212 <filename>/sys/fs/cgroup</filename> will always be
1213 mounted read-write (but for the <option>:mixed</option>
1214 and <option>:ro</option> cases, the individual
1215 hierarchies,
1216 <filename>/sys/fs/cgroup/$hierarchy</filename>, will be
1217 read-only). This is in order to work around a quirk in
1218 Ubuntu's
1219 <citerefentry>
1220 <refentrytitle>mountall</refentrytitle>
1221 <manvolnum>8</manvolnum>
1222 </citerefentry>
1223 command that will cause containers to wait for user
1224 input at boot if
1225 <filename>/sys/fs/cgroup</filename> is mounted read-only
1226 and the container can't remount it read-write due to a
1227 lack of CAP_SYS_ADMIN.
1228 </para>
1229 <para>
1230 Examples:
1231 </para>
1232 <programlisting>
1233 lxc.mount.auto = proc sys cgroup
1234 lxc.mount.auto = proc:rw sys:rw cgroup-full:rw
1235 </programlisting>
1236 </listitem>
1237 </varlistentry>
1238
1239 </variablelist>
1240 </refsect2>
1241
1242 <refsect2>
1243 <title>Root file system</title>
1244 <para>
1245 The root file system of the container can be different than that
1246 of the host system.
1247 </para>
1248 <variablelist>
1249 <varlistentry>
1250 <term>
1251 <option>lxc.rootfs.path</option>
1252 </term>
1253 <listitem>
1254 <para>
1255 specify the root file system for the container. It can
1256 be an image file, a directory or a block device. If not
1257 specified, the container shares its root file system
1258 with the host.
1259 </para>
1260 <para>
1261 For directory or simple block-device backed containers,
1262 a pathname can be used. If the rootfs is backed by a nbd
1263 device, then <filename>nbd:file:1</filename> specifies that
1264 <filename>file</filename> should be attached to a nbd device,
1265 and partition 1 should be mounted as the rootfs.
1266 <filename>nbd:file</filename> specifies that the nbd device
1267 itself should be mounted. <filename>overlayfs:/lower:/upper</filename>
1268 specifies that the rootfs should be an overlay with <filename>/upper</filename>
1269 being mounted read-write over a read-only mount of <filename>/lower</filename>.
1270 <filename>aufs:/lower:/upper</filename> does the same using aufs in place
1271 of overlayfs. For both <filename>overlayfs</filename> and
1272 <filename>aufs</filename> multiple <filename>/lower</filename>
1273 directories can be specified. <filename>loop:/file</filename> tells lxc to attach
1274 <filename>/file</filename> to a loop device and mount the loop device.
1275 </para>
1276 </listitem>
1277 </varlistentry>
1278
1279 <varlistentry>
1280 <term>
1281 <option>lxc.rootfs.mount</option>
1282 </term>
1283 <listitem>
1284 <para>
1285 where to recursively bind <option>lxc.rootfs.path</option>
1286 before pivoting. This is to ensure success of the
1287 <citerefentry>
1288 <refentrytitle><command>pivot_root</command></refentrytitle>
1289 <manvolnum>8</manvolnum>
1290 </citerefentry>
1291 syscall. Any directory suffices, the default should
1292 generally work.
1293 </para>
1294 </listitem>
1295 </varlistentry>
1296
1297 <varlistentry>
1298 <term>
1299 <option>lxc.rootfs.options</option>
1300 </term>
1301 <listitem>
1302 <para>
1303 extra mount options to use when mounting the rootfs.
1304 </para>
1305 </listitem>
1306 </varlistentry>
1307
1308 </variablelist>
1309 </refsect2>
1310
1311 <refsect2>
1312 <title>Control group</title>
1313 <para>
1314 The control group section contains the configuration for the
1315 different subsystem. <command>lxc</command> does not check the
1316 correctness of the subsystem name. This has the disadvantage
1317 of not detecting configuration errors until the container is
1318 started, but has the advantage of permitting any future
1319 subsystem.
1320 </para>
1321 <variablelist>
1322 <varlistentry>
1323 <term>
1324 <option>lxc.cgroup.[subsystem name]</option>
1325 </term>
1326 <listitem>
1327 <para>
1328 specify the control group value to be set. The
1329 subsystem name is the literal name of the control group
1330 subsystem. The permitted names and the syntax of their
1331 values is not dictated by LXC, instead it depends on the
1332 features of the Linux kernel running at the time the
1333 container is started,
1334 eg. <option>lxc.cgroup.cpuset.cpus</option>
1335 </para>
1336 </listitem>
1337 </varlistentry>
1338 <varlistentry>
1339 <term>
1340 <option>lxc.cgroup.dir</option>
1341 </term>
1342 <listitem>
1343 <para>
1344 specify a directory or path in which the container's cgroup will
1345 be created. For example, setting
1346 <option>lxc.cgroup.dir = my-cgroup/first</option> for a container
1347 named "c1" will create the container's cgroup as a sub-cgroup of
1348 "my-cgroup". For example, if the user's current cgroup "my-user"
1349 is located in the root cgroup of the cpuset controller in a
1350 cgroup v1 hierarchy this would create the cgroup
1351 "/sys/fs/cgroup/cpuset/my-user/my-cgroup/first/c1" for the
1352 container. Any missing cgroups will be created by LXC. This
1353 presupposes that the user has write access to its current cgroup.
1354 </para>
1355 </listitem>
1356 </varlistentry>
1357 </variablelist>
1358 </refsect2>
1359
1360 <refsect2>
1361 <title>Capabilities</title>
1362 <para>
1363 The capabilities can be dropped in the container if this one
1364 is run as root.
1365 </para>
1366 <variablelist>
1367 <varlistentry>
1368 <term>
1369 <option>lxc.cap.drop</option>
1370 </term>
1371 <listitem>
1372 <para>
1373 Specify the capability to be dropped in the container. A
1374 single line defining several capabilities with a space
1375 separation is allowed. The format is the lower case of
1376 the capability definition without the "CAP_" prefix,
1377 eg. CAP_SYS_MODULE should be specified as
1378 sys_module. See
1379 <citerefentry>
1380 <refentrytitle><command>capabilities</command></refentrytitle>
1381 <manvolnum>7</manvolnum>
1382 </citerefentry>.
1383 If used with no value, lxc will clear any drop capabilities
1384 specified up to this point.
1385 </para>
1386 </listitem>
1387 </varlistentry>
1388 <varlistentry>
1389 <term>
1390 <option>lxc.cap.keep</option>
1391 </term>
1392 <listitem>
1393 <para>
1394 Specify the capability to be kept in the container. All other
1395 capabilities will be dropped. When a special value of "none" is
1396 encountered, lxc will clear any keep capabilities specified up
1397 to this point. A value of "none" alone can be used to drop all
1398 capabilities.
1399 </para>
1400 </listitem>
1401 </varlistentry>
1402 </variablelist>
1403 </refsect2>
1404
1405 <refsect2>
1406 <title>Namespace Inheritance</title>
1407 <para>
1408 A namespace can be inherited from another container or process.
1409 </para>
1410 <variablelist>
1411 <varlistentry>
1412 <term>
1413 <option>lxc.namespace.[namespace identifier]</option>
1414 </term>
1415 <listitem>
1416 <para>
1417 Specify a namespace to inherit from another container or process.
1418 The <option>[namespace identifier]</option> suffix needs to be
1419 replaced with one of the namespaces that appear in the
1420 <filename>/proc/PID/ns</filename> directory.
1421 </para>
1422
1423 <para>
1424 To inherit the namespace from another process set the
1425 <option>lxc.namespace.[namespace identifier]</option> to the PID of
1426 the process, e.g. <option>lxc.namespace.net=42</option>.
1427 </para>
1428
1429 <para>
1430 To inherit the namespace from another container set the
1431 <option>lxc.namespace.[namespace identifier]</option> to the name of
1432 the container, e.g. <option>lxc.namespace.pid=c3</option>.
1433 </para>
1434
1435 <para>
1436 To inherit the namespace from another container located in a
1437 different path than the standard liblxc path set the
1438 <option>lxc.namespace.[namespace identifier]</option> to the full
1439 path to the container, e.g.
1440 <option>lxc.namespace.user=/opt/c3</option>.
1441 </para>
1442
1443 <para>
1444 In order to inherit namespaces the caller needs to have sufficient
1445 privilege over the process or container.
1446 </para>
1447
1448 <para>
1449 Note that sharing pid namespaces between system containers will
1450 likely not work with most init systems.
1451 </para>
1452
1453 <para>
1454 Note that if two processes are in different user namespaces and one
1455 process wants to inherit the other's network namespace it usually
1456 needs to inherit the user namespace as well.
1457 </para>
1458 </listitem>
1459 </varlistentry>
1460 </variablelist>
1461 </refsect2>
1462
1463 <refsect2>
1464 <title>Resource limits</title>
1465 <para>
1466 The soft and hard resource limits for the container can be changed.
1467 Unprivileged containers can only lower them. Resources which are not
1468 explicitly specified will be inherited.
1469 </para>
1470 <variablelist>
1471 <varlistentry>
1472 <term>
1473 <option>lxc.prlimit.[limit name]</option>
1474 </term>
1475 <listitem>
1476 <para>
1477 Specify the resource limit to be set. A limit is specified as two
1478 colon separated values which are either numeric or the word
1479 'unlimited'. A single value can be used as a shortcut to set both
1480 soft and hard limit to the same value. The permitted names the
1481 "RLIMIT_" resource names in lowercase without the "RLIMIT_"
1482 prefix, eg. RLIMIT_NOFILE should be specified as "nofile". See
1483 <citerefentry>
1484 <refentrytitle><command>setrlimit</command></refentrytitle>
1485 <manvolnum>2</manvolnum>
1486 </citerefentry>.
1487 If used with no value, lxc will clear the resource limit
1488 specified up to this point. A resource with no explicitly
1489 configured limitation will be inherited from the process starting
1490 up the container.
1491 </para>
1492 </listitem>
1493 </varlistentry>
1494 </variablelist>
1495 </refsect2>
1496
1497 <refsect2>
1498 <title>Sysctl</title>
1499 <para>
1500 Configure kernel parameters for the container.
1501 </para>
1502 <variablelist>
1503 <varlistentry>
1504 <term>
1505 <option>lxc.sysctl.[kernel parameters name]</option>
1506 </term>
1507 <listitem>
1508 <para>
1509 Specify the kernel parameters to be set. The parameters available
1510 are those listed under /proc/sys/.
1511 Note that not all sysctls are namespaced. Changing Non-namespaced
1512 sysctls will cause the system-wide setting to be modified.
1513 <citerefentry>
1514 <refentrytitle><command>sysctl</command></refentrytitle>
1515 <manvolnum>8</manvolnum>
1516 </citerefentry>.
1517 If used with no value, lxc will clear the parameters specified up
1518 to this point.
1519 </para>
1520 </listitem>
1521 </varlistentry>
1522 </variablelist>
1523 </refsect2>
1524
1525 <refsect2>
1526 <title>Apparmor profile</title>
1527 <para>
1528 If lxc was compiled and installed with apparmor support, and the host
1529 system has apparmor enabled, then the apparmor profile under which the
1530 container should be run can be specified in the container
1531 configuration. The default is <command>lxc-container-default-cgns</command>
1532 if the host kernel is cgroup namespace aware, or
1533 <command>lxc-container-default</command> othewise.
1534 </para>
1535 <variablelist>
1536 <varlistentry>
1537 <term>
1538 <option>lxc.apparmor.profile</option>
1539 </term>
1540 <listitem>
1541 <para>
1542 Specify the apparmor profile under which the container should
1543 be run. To specify that the container should be unconfined,
1544 use
1545 </para>
1546 <programlisting>lxc.apparmor.profile = unconfined</programlisting>
1547 <para>
1548 If the apparmor profile should remain unchanged (i.e. if you
1549 are nesting containers and are already confined), then use
1550 </para>
1551 <programlisting>lxc.apparmor.profile = unchanged</programlisting>
1552 </listitem>
1553 </varlistentry>
1554 <varlistentry>
1555 <term>
1556 <option>lxc.apparmor.allow_incomplete</option>
1557 </term>
1558 <listitem>
1559 <para>
1560 Apparmor profiles are pathname based. Therefore many file
1561 restrictions require mount restrictions to be effective against
1562 a determined attacker. However, these mount restrictions are not
1563 yet implemented in the upstream kernel. Without the mount
1564 restrictions, the apparmor profiles still protect against accidental
1565 damager.
1566 </para>
1567 <para>
1568 If this flag is 0 (default), then the container will not be
1569 started if the kernel lacks the apparmor mount features, so that a
1570 regression after a kernel upgrade will be detected. To start the
1571 container under partial apparmor protection, set this flag to 1.
1572 </para>
1573 </listitem>
1574 </varlistentry>
1575 </variablelist>
1576 </refsect2>
1577
1578 <refsect2>
1579 <title>SELinux context</title>
1580 <para>
1581 If lxc was compiled and installed with SELinux support, and the host
1582 system has SELinux enabled, then the SELinux context under which the
1583 container should be run can be specified in the container
1584 configuration. The default is <command>unconfined_t</command>,
1585 which means that lxc will not attempt to change contexts.
1586 See @DATADIR@/lxc/selinux/lxc.te for an example policy and more
1587 information.
1588 </para>
1589 <variablelist>
1590 <varlistentry>
1591 <term>
1592 <option>lxc.selinux.context</option>
1593 </term>
1594 <listitem>
1595 <para>
1596 Specify the SELinux context under which the container should
1597 be run or <command>unconfined_t</command>. For example
1598 </para>
1599 <programlisting>lxc.selinux.context = system_u:system_r:lxc_t:s0:c22</programlisting>
1600 </listitem>
1601 </varlistentry>
1602 </variablelist>
1603 </refsect2>
1604
1605 <refsect2>
1606 <title>Seccomp configuration</title>
1607 <para>
1608 A container can be started with a reduced set of available
1609 system calls by loading a seccomp profile at startup. The
1610 seccomp configuration file must begin with a version number
1611 on the first line, a policy type on the second line, followed
1612 by the configuration.
1613 </para>
1614 <para>
1615 Versions 1 and 2 are currently supported. In version 1, the
1616 policy is a simple whitelist. The second line therefore must
1617 read "whitelist", with the rest of the file containing one (numeric)
1618 sycall number per line. Each syscall number is whitelisted,
1619 while every unlisted number is blacklisted for use in the container
1620 </para>
1621
1622 <para>
1623 In version 2, the policy may be blacklist or whitelist,
1624 supports per-rule and per-policy default actions, and supports
1625 per-architecture system call resolution from textual names.
1626 </para>
1627 <para>
1628 An example blacklist policy, in which all system calls are
1629 allowed except for mknod, which will simply do nothing and
1630 return 0 (success), looks like:
1631 </para>
1632
1633 <programlisting>
1634 2
1635 blacklist
1636 mknod errno 0
1637 </programlisting>
1638
1639 <variablelist>
1640 <varlistentry>
1641 <term>
1642 <option>lxc.seccomp.profile</option>
1643 </term>
1644 <listitem>
1645 <para>
1646 Specify a file containing the seccomp configuration to
1647 load before the container starts.
1648 </para>
1649 </listitem>
1650 </varlistentry>
1651 </variablelist>
1652 </refsect2>
1653
1654 <refsect2>
1655 <title>PR_SET_NO_NEW_PRIVS</title>
1656 <para>
1657 With PR_SET_NO_NEW_PRIVS active execve() promises not to grant
1658 privileges to do anything that could not have been done without
1659 the execve() call (for example, rendering the set-user-ID and
1660 set-group-ID mode bits, and file capabilities non-functional).
1661 Once set, this bit cannot be unset. The setting of this bit is
1662 inherited by children created by fork() and clone(), and preserved
1663 across execve().
1664 Note that PR_SET_NO_NEW_PRIVS is applied after the container has
1665 changed into its intended AppArmor profile or SElinux context.
1666 </para>
1667 <variablelist>
1668 <varlistentry>
1669 <term>
1670 <option>lxc.no_new_privs</option>
1671 </term>
1672 <listitem>
1673 <para>
1674 Specify whether the PR_SET_NO_NEW_PRIVS flag should be set for the
1675 container. Set to 1 to activate.
1676 </para>
1677 </listitem>
1678 </varlistentry>
1679 </variablelist>
1680 </refsect2>
1681
1682 <refsect2>
1683 <title>UID mappings</title>
1684 <para>
1685 A container can be started in a private user namespace with
1686 user and group id mappings. For instance, you can map userid
1687 0 in the container to userid 200000 on the host. The root
1688 user in the container will be privileged in the container,
1689 but unprivileged on the host. Normally a system container
1690 will want a range of ids, so you would map, for instance,
1691 user and group ids 0 through 20,000 in the container to the
1692 ids 200,000 through 220,000.
1693 </para>
1694 <variablelist>
1695 <varlistentry>
1696 <term>
1697 <option>lxc.idmap</option>
1698 </term>
1699 <listitem>
1700 <para>
1701 Four values must be provided. First a character, either
1702 'u', or 'g', to specify whether user or group ids are
1703 being mapped. Next is the first userid as seen in the
1704 user namespace of the container. Next is the userid as
1705 seen on the host. Finally, a range indicating the number
1706 of consecutive ids to map.
1707 </para>
1708 </listitem>
1709 </varlistentry>
1710 </variablelist>
1711 </refsect2>
1712
1713 <refsect2>
1714 <title>Container hooks</title>
1715 <para>
1716 Container hooks are programs or scripts which can be executed
1717 at various times in a container's lifetime.
1718 </para>
1719 <para>
1720 When a container hook is executed, additional information is passed
1721 along. The <option>lxc.hook.version</option> argument can be used to
1722 determine if the following arguments are passed as command line
1723 arguments or through environment variables. The arguments are:
1724 <itemizedlist>
1725 <listitem><para> Container name. </para></listitem>
1726 <listitem><para> Section (always 'lxc'). </para></listitem>
1727 <listitem><para> The hook type (i.e. 'clone' or 'pre-mount'). </para></listitem>
1728 <listitem><para> Additional arguments. In the
1729 case of the clone hook, any extra arguments passed to
1730 lxc-clone will appear as further arguments to the hook.
1731 In the case of the stop hook, paths to filedescriptors
1732 for each of the container's namespaces along with their types
1733 are passed. </para></listitem>
1734 </itemizedlist>
1735 The following environment variables are set:
1736 <itemizedlist>
1737 <listitem><para> LXC_CGNS_AWARE: indicator whether the container is
1738 cgroup namespace aware. </para></listitem>
1739 <listitem><para> LXC_CONFIG_FILE: the path to the container
1740 configuration file. </para></listitem>
1741 <listitem><para> LXC_HOOK_TYPE: the hook type (e.g. 'clone', 'mount',
1742 'pre-mount'). Note that the existence of this environment variable is
1743 conditional on the value of <option>lxc.hook.version</option>. If it
1744 is set to 1 then LXC_HOOK_TYPE will be set.
1745 </para></listitem>
1746 <listitem><para> LXC_HOOK_SECTION: the section type (e.g. 'lxc',
1747 'net'). Note that the existence of this environment variable is
1748 conditional on the value of <option>lxc.hook.version</option>. If it
1749 is set to 1 then LXC_HOOK_SECTION will be set.
1750 </para></listitem>
1751 <listitem><para> LXC_HOOK_VERSION: the version of the hooks. This
1752 value is identical to the value of the container's
1753 <option>lxc.hook.version</option> config item. If it is set to 0 then
1754 old-style hooks are used. If it is set to 1 then new-style hooks are
1755 used. </para></listitem>
1756 <listitem><para> LXC_LOG_LEVEL: the container's log level. </para></listitem>
1757 <listitem><para> LXC_NAME: is the container's name. </para></listitem>
1758 <listitem><para> LXC_[NAMESPACE IDENTIFIER]_NS: path under
1759 /proc/PID/fd/ to a file descriptor referring to the container's
1760 namespace. For each preserved namespace type there will be a separate
1761 environment variable. These environment variables will only be set if
1762 <option>lxc.hook.version</option> is set to 1. </para></listitem>
1763 <listitem><para> LXC_ROOTFS_MOUNT: the path to the mounted root filesystem. </para></listitem>
1764 <listitem><para> LXC_ROOTFS_PATH: this is the lxc.rootfs.path entry
1765 for the container. Note this is likely not where the mounted rootfs is
1766 to be found, use LXC_ROOTFS_MOUNT for that. </para></listitem>
1767 <listitem><para> LXC_SRC_NAME: in the case of the clone hook, this is
1768 the original container's name. </para></listitem>
1769 </itemizedlist>
1770 </para>
1771 <para>
1772 Standard output from the hooks is logged at debug level.
1773 Standard error is not logged, but can be captured by the
1774 hook redirecting its standard error to standard output.
1775 </para>
1776 <variablelist>
1777 <varlistentry>
1778 <term>
1779 <option>lxc.hook.version</option>
1780 </term>
1781 <listitem>
1782 <para>
1783 To pass the arguments in new style via environment variables set to
1784 1 otherwise set to 0 to pass them as arguments.
1785 This setting affects all hooks arguments that were traditionally
1786 passed as arguments to the script. Specifically, it affects the
1787 container name, section (e.g. 'lxc', 'net') and hook type (e.g.
1788 'clone', 'mount', 'pre-mount') arguments. If new-style hooks are
1789 used then the arguments will be available as environment variables.
1790 The container name will be set in LXC_NAME. (This is set
1791 independently of the value used for this config item.) The section
1792 will be set in LXC_HOOK_SECTION and the hook type will be set in
1793 LXC_HOOK_TYPE.
1794 It also affects how the paths to file descriptors referring to the
1795 container's namespaces are passed. If set to 1 then for each
1796 namespace a separate environment variable LXC_[NAMESPACE
1797 IDENTIFIER]_NS will be set. If set to 0 then the paths will be
1798 passed as arguments to the stop hook.
1799 </para>
1800 </listitem>
1801 </varlistentry>
1802 </variablelist>
1803 <variablelist>
1804 <varlistentry>
1805 <term>
1806 <option>lxc.hook.pre-start</option>
1807 </term>
1808 <listitem>
1809 <para>
1810 A hook to be run in the host's namespace before the
1811 container ttys, consoles, or mounts are up.
1812 </para>
1813 </listitem>
1814 </varlistentry>
1815 </variablelist>
1816 <variablelist>
1817 <varlistentry>
1818 <term>
1819 <option>lxc.hook.pre-mount</option>
1820 </term>
1821 <listitem>
1822 <para>
1823 A hook to be run in the container's fs namespace but before
1824 the rootfs has been set up. This allows for manipulation
1825 of the rootfs, i.e. to mount an encrypted filesystem. Mounts
1826 done in this hook will not be reflected on the host (apart from
1827 mounts propagation), so they will be automatically cleaned up
1828 when the container shuts down.
1829 </para>
1830 </listitem>
1831 </varlistentry>
1832 </variablelist>
1833 <variablelist>
1834 <varlistentry>
1835 <term>
1836 <option>lxc.hook.mount</option>
1837 </term>
1838 <listitem>
1839 <para>
1840 A hook to be run in the container's namespace after
1841 mounting has been done, but before the pivot_root.
1842 </para>
1843 </listitem>
1844 </varlistentry>
1845 </variablelist>
1846 <variablelist>
1847 <varlistentry>
1848 <term>
1849 <option>lxc.hook.autodev</option>
1850 </term>
1851 <listitem>
1852 <para>
1853 A hook to be run in the container's namespace after
1854 mounting has been done and after any mount hooks have
1855 run, but before the pivot_root, if
1856 <option>lxc.autodev</option> == 1.
1857 The purpose of this hook is to assist in populating the
1858 /dev directory of the container when using the autodev
1859 option for systemd based containers. The container's /dev
1860 directory is relative to the
1861 ${<option>LXC_ROOTFS_MOUNT</option>} environment
1862 variable available when the hook is run.
1863 </para>
1864 </listitem>
1865 </varlistentry>
1866 </variablelist>
1867 <variablelist>
1868 <varlistentry>
1869 <term>
1870 <option>lxc.hook.start-host</option>
1871 </term>
1872 <listitem>
1873 <para>
1874 A hook to be run in the host's namespace after the
1875 container has been setup, and immediately before starting
1876 the container init.
1877 </para>
1878 </listitem>
1879 </varlistentry>
1880 </variablelist>
1881 <variablelist>
1882 <varlistentry>
1883 <term>
1884 <option>lxc.hook.start</option>
1885 </term>
1886 <listitem>
1887 <para>
1888 A hook to be run in the container's namespace immediately
1889 before executing the container's init. This requires the
1890 program to be available in the container.
1891 </para>
1892 </listitem>
1893 </varlistentry>
1894 </variablelist>
1895 <variablelist>
1896 <varlistentry>
1897 <term>
1898 <option>lxc.hook.stop</option>
1899 </term>
1900 <listitem>
1901 <para>
1902 A hook to be run in the host's namespace with references
1903 to the container's namespaces after the container has been shut
1904 down. For each namespace an extra argument is passed to the hook
1905 containing the namespace's type and a filename that can be used to
1906 obtain a file descriptor to the corresponding namespace, separated
1907 by a colon. The type is the name as it would appear in the
1908 <filename>/proc/PID/ns</filename> directory.
1909 For instance for the mount namespace the argument usually looks
1910 like <filename>mnt:/proc/PID/fd/12</filename>.
1911 </para>
1912 </listitem>
1913 </varlistentry>
1914 </variablelist>
1915 <variablelist>
1916 <varlistentry>
1917 <term>
1918 <option>lxc.hook.post-stop</option>
1919 </term>
1920 <listitem>
1921 <para>
1922 A hook to be run in the host's namespace after the
1923 container has been shut down.
1924 </para>
1925 </listitem>
1926 </varlistentry>
1927 </variablelist>
1928 <variablelist>
1929 <varlistentry>
1930 <term>
1931 <option>lxc.hook.clone</option>
1932 </term>
1933 <listitem>
1934 <para>
1935 A hook to be run when the container is cloned to a new one.
1936 See <citerefentry><refentrytitle><command>lxc-clone</command></refentrytitle>
1937 <manvolnum>1</manvolnum></citerefentry> for more information.
1938 </para>
1939 </listitem>
1940 </varlistentry>
1941 </variablelist>
1942 <variablelist>
1943 <varlistentry>
1944 <term>
1945 <option>lxc.hook.destroy</option>
1946 </term>
1947 <listitem>
1948 <para>
1949 A hook to be run when the container is destroyed.
1950 </para>
1951 </listitem>
1952 </varlistentry>
1953 </variablelist>
1954 </refsect2>
1955
1956 <refsect2>
1957 <title>Container hooks Environment Variables</title>
1958 <para>
1959 A number of environment variables are made available to the startup
1960 hooks to provide configuration information and assist in the
1961 functioning of the hooks. Not all variables are valid in all
1962 contexts. In particular, all paths are relative to the host system
1963 and, as such, not valid during the <option>lxc.hook.start</option> hook.
1964 </para>
1965 <variablelist>
1966 <varlistentry>
1967 <term>
1968 <option>LXC_NAME</option>
1969 </term>
1970 <listitem>
1971 <para>
1972 The LXC name of the container. Useful for logging messages
1973 in common log environments. [<option>-n</option>]
1974 </para>
1975 </listitem>
1976 </varlistentry>
1977 </variablelist>
1978 <variablelist>
1979 <varlistentry>
1980 <term>
1981 <option>LXC_CONFIG_FILE</option>
1982 </term>
1983 <listitem>
1984 <para>
1985 Host relative path to the container configuration file. This
1986 gives the container to reference the original, top level,
1987 configuration file for the container in order to locate any
1988 additional configuration information not otherwise made
1989 available. [<option>-f</option>]
1990 </para>
1991 </listitem>
1992 </varlistentry>
1993 </variablelist>
1994 <variablelist>
1995 <varlistentry>
1996 <term>
1997 <option>LXC_CONSOLE</option>
1998 </term>
1999 <listitem>
2000 <para>
2001 The path to the console output of the container if not NULL.
2002 [<option>-c</option>] [<option>lxc.console.path</option>]
2003 </para>
2004 </listitem>
2005 </varlistentry>
2006 </variablelist>
2007 <variablelist>
2008 <varlistentry>
2009 <term>
2010 <option>LXC_CONSOLE_LOGPATH</option>
2011 </term>
2012 <listitem>
2013 <para>
2014 The path to the console log output of the container if not NULL.
2015 [<option>-L</option>]
2016 </para>
2017 </listitem>
2018 </varlistentry>
2019 </variablelist>
2020 <variablelist>
2021 <varlistentry>
2022 <term>
2023 <option>LXC_ROOTFS_MOUNT</option>
2024 </term>
2025 <listitem>
2026 <para>
2027 The mount location to which the container is initially bound.
2028 This will be the host relative path to the container rootfs
2029 for the container instance being started and is where changes
2030 should be made for that instance.
2031 [<option>lxc.rootfs.mount</option>]
2032 </para>
2033 </listitem>
2034 </varlistentry>
2035 </variablelist>
2036 <variablelist>
2037 <varlistentry>
2038 <term>
2039 <option>LXC_ROOTFS_PATH</option>
2040 </term>
2041 <listitem>
2042 <para>
2043 The host relative path to the container root which has been
2044 mounted to the rootfs.mount location.
2045 [<option>lxc.rootfs.path</option>]
2046 </para>
2047 </listitem>
2048 </varlistentry>
2049 </variablelist>
2050 <variablelist>
2051 <varlistentry>
2052 <term>
2053 <option>LXC_SRC_NAME</option>
2054 </term>
2055 <listitem>
2056 <para>
2057 Only for the clone hook. Is set to the original container name.
2058 </para>
2059 </listitem>
2060 </varlistentry>
2061 </variablelist>
2062 <variablelist>
2063 <varlistentry>
2064 <term>
2065 <option>LXC_TARGET</option>
2066 </term>
2067 <listitem>
2068 <para>
2069 Only for the stop hook. Is set to "stop" for a container
2070 shutdown or "reboot" for a container reboot.
2071 </para>
2072 </listitem>
2073 </varlistentry>
2074 </variablelist>
2075 <variablelist>
2076 <varlistentry>
2077 <term>
2078 <option>LXC_CGNS_AWARE</option>
2079 </term>
2080 <listitem>
2081 <para>
2082 If unset, then this version of lxc is not aware of cgroup
2083 namespaces. If set, it will be set to 1, and lxc is aware
2084 of cgroup namespaces. Note this does not guarantee that
2085 cgroup namespaces are enabled in the kernel. This is used
2086 by the lxcfs mount hook.
2087 </para>
2088 </listitem>
2089 </varlistentry>
2090 </variablelist>
2091 </refsect2>
2092 <refsect2>
2093 <title>Logging</title>
2094 <para>
2095 Logging can be configured on a per-container basis. By default,
2096 depending upon how the lxc package was compiled, container startup
2097 is logged only at the ERROR level, and logged to a file named after
2098 the container (with '.log' appended) either under the container path,
2099 or under @LOGPATH@.
2100 </para>
2101 <para>
2102 Both the default log level and the log file can be specified in the
2103 container configuration file, overriding the default behavior. Note
2104 that the configuration file entries can in turn be overridden by the
2105 command line options to <command>lxc-start</command>.
2106 </para>
2107 <variablelist>
2108 <varlistentry>
2109 <term>
2110 <option>lxc.log.level</option>
2111 </term>
2112 <listitem>
2113 <para>
2114 The level at which to log. The log level is an integer in
2115 the range of 0..8 inclusive, where a lower number means more
2116 verbose debugging. In particular 0 = trace, 1 = debug, 2 =
2117 info, 3 = notice, 4 = warn, 5 = error, 6 = critical, 7 =
2118 alert, and 8 = fatal. If unspecified, the level defaults
2119 to 5 (error), so that only errors and above are logged.
2120 </para>
2121 <para>
2122 Note that when a script (such as either a hook script or a
2123 network interface up or down script) is called, the script's
2124 standard output is logged at level 1, debug.
2125 </para>
2126 </listitem>
2127 </varlistentry>
2128 <varlistentry>
2129 <term>
2130 <option>lxc.log</option>
2131 </term>
2132 <listitem>
2133 <para>
2134 The file to which logging info should be written.
2135 </para>
2136 </listitem>
2137 </varlistentry>
2138 <varlistentry>
2139 <term>
2140 <option>lxc.log.syslog</option>
2141 </term>
2142 <listitem>
2143 <para>
2144 Send logging info to syslog. It respects the log level defined in
2145 <command>lxc.log.level</command>. The argument should be the syslog
2146 facility to use, valid ones are: daemon, local0, local1, local2,
2147 local3, local4, local5, local5, local6, local7.
2148 </para>
2149 </listitem>
2150 </varlistentry>
2151 </variablelist>
2152 </refsect2>
2153
2154 <refsect2>
2155 <title>Autostart</title>
2156 <para>
2157 The autostart options support marking which containers should be
2158 auto-started and in what order. These options may be used by LXC tools
2159 directly or by external tooling provided by the distributions.
2160 </para>
2161
2162 <variablelist>
2163 <varlistentry>
2164 <term>
2165 <option>lxc.start.auto</option>
2166 </term>
2167 <listitem>
2168 <para>
2169 Whether the container should be auto-started.
2170 Valid values are 0 (off) and 1 (on).
2171 </para>
2172 </listitem>
2173 </varlistentry>
2174 <varlistentry>
2175 <term>
2176 <option>lxc.start.delay</option>
2177 </term>
2178 <listitem>
2179 <para>
2180 How long to wait (in seconds) after the container is
2181 started before starting the next one.
2182 </para>
2183 </listitem>
2184 </varlistentry>
2185 <varlistentry>
2186 <term>
2187 <option>lxc.start.order</option>
2188 </term>
2189 <listitem>
2190 <para>
2191 An integer used to sort the containers when auto-starting
2192 a series of containers at once.
2193 </para>
2194 </listitem>
2195 </varlistentry>
2196 <varlistentry>
2197 <term>
2198 <option>lxc.monitor.unshare</option>
2199 </term>
2200 <listitem>
2201 <para>
2202 If not zero the mount namespace will be unshared from the host
2203 before initializing the container (before running any pre-start
2204 hooks). This requires the CAP_SYS_ADMIN capability at startup.
2205 Default is 0.
2206 </para>
2207 </listitem>
2208 </varlistentry>
2209 <varlistentry>
2210 <term>
2211 <option>lxc.group</option>
2212 </term>
2213 <listitem>
2214 <para>
2215 A multi-value key (can be used multiple times) to put the
2216 container in a container group. Those groups can then be
2217 used (amongst other things) to start a series of related
2218 containers.
2219 </para>
2220 </listitem>
2221 </varlistentry>
2222 </variablelist>
2223 </refsect2>
2224
2225 <refsect2>
2226 <title>Autostart and System Boot</title>
2227 <para>
2228 Each container can be part of any number of groups or no group at all.
2229 Two groups are special. One is the NULL group, i.e. the container does
2230 not belong to any group. The other group is the "onboot" group.
2231 </para>
2232
2233 <para>
2234 When the system boots with the LXC service enabled, it will first
2235 attempt to boot any containers with lxc.start.auto == 1 that is a member
2236 of the "onboot" group. The startup will be in order of lxc.start.order.
2237 If an lxc.start.delay has been specified, that delay will be honored
2238 before attempting to start the next container to give the current
2239 container time to begin initialization and reduce overloading the host
2240 system. After starting the members of the "onboot" group, the LXC system
2241 will proceed to boot containers with lxc.start.auto == 1 which are not
2242 members of any group (the NULL group) and proceed as with the onboot
2243 group.
2244 </para>
2245
2246 </refsect2>
2247
2248 <refsect2>
2249 <title>Container Environment</title>
2250 <para>
2251 If you want to pass environment variables into the container (that
2252 is, environment variables which will be available to init and all of
2253 its descendents), you can use <command>lxc.environment</command>
2254 parameters to do so. Be careful that you do not pass in anything
2255 sensitive; any process in the container which doesn't have its
2256 environment scrubbed will have these variables available to it, and
2257 environment variables are always available via
2258 <command>/proc/PID/environ</command>.
2259 </para>
2260
2261 <para>
2262 This configuration parameter can be specified multiple times; once
2263 for each environment variable you wish to configure.
2264 </para>
2265
2266 <variablelist>
2267 <varlistentry>
2268 <term>
2269 <option>lxc.environment</option>
2270 </term>
2271 <listitem>
2272 <para>
2273 Specify an environment variable to pass into the container.
2274 Example:
2275 </para>
2276 <programlisting>
2277 lxc.environment = APP_ENV=production
2278 lxc.environment = SYSLOG_SERVER=192.0.2.42
2279 </programlisting>
2280 </listitem>
2281 </varlistentry>
2282 </variablelist>
2283 </refsect2>
2284
2285 </refsect1>
2286
2287 <refsect1>
2288 <title>Examples</title>
2289 <para>
2290 In addition to the few examples given below, you will find
2291 some other examples of configuration file in @DOCDIR@/examples
2292 </para>
2293 <refsect2>
2294 <title>Network</title>
2295 <para>This configuration sets up a container to use a veth pair
2296 device with one side plugged to a bridge br0 (which has been
2297 configured before on the system by the administrator). The
2298 virtual network device visible in the container is renamed to
2299 eth0.</para>
2300 <programlisting>
2301 lxc.uts.name = myhostname
2302 lxc.net.0.type = veth
2303 lxc.net.0.flags = up
2304 lxc.net.0.link = br0
2305 lxc.net.0.name = eth0
2306 lxc.net.0.hwaddr = 4a:49:43:49:79:bf
2307 lxc.net.0.ipv4.address = 10.2.3.5/24 10.2.3.255
2308 lxc.net.0.ipv6.address = 2003:db8:1:0:214:1234:fe0b:3597
2309 </programlisting>
2310 </refsect2>
2311
2312 <refsect2>
2313 <title>UID/GID mapping</title>
2314 <para>This configuration will map both user and group ids in the
2315 range 0-9999 in the container to the ids 100000-109999 on the host.
2316 </para>
2317 <programlisting>
2318 lxc.idmap = u 0 100000 10000
2319 lxc.idmap = g 0 100000 10000
2320 </programlisting>
2321 </refsect2>
2322
2323 <refsect2>
2324 <title>Control group</title>
2325 <para>This configuration will setup several control groups for
2326 the application, cpuset.cpus restricts usage of the defined cpu,
2327 cpus.share prioritize the control group, devices.allow makes
2328 usable the specified devices.</para>
2329 <programlisting>
2330 lxc.cgroup.cpuset.cpus = 0,1
2331 lxc.cgroup.cpu.shares = 1234
2332 lxc.cgroup.devices.deny = a
2333 lxc.cgroup.devices.allow = c 1:3 rw
2334 lxc.cgroup.devices.allow = b 8:0 rw
2335 </programlisting>
2336 </refsect2>
2337
2338 <refsect2>
2339 <title>Complex configuration</title>
2340 <para>This example show a complex configuration making a complex
2341 network stack, using the control groups, setting a new hostname,
2342 mounting some locations and a changing root file system.</para>
2343 <programlisting>
2344 lxc.uts.name = complex
2345 lxc.net.0.type = veth
2346 lxc.net.0.flags = up
2347 lxc.net.0.link = br0
2348 lxc.net.0.hwaddr = 4a:49:43:49:79:bf
2349 lxc.net.0.ipv4.address = 10.2.3.5/24 10.2.3.255
2350 lxc.net.0.ipv6.address = 2003:db8:1:0:214:1234:fe0b:3597
2351 lxc.net.0.ipv6.address = 2003:db8:1:0:214:5432:feab:3588
2352 lxc.net.1.type = macvlan
2353 lxc.net.1.flags = up
2354 lxc.net.1.link = eth0
2355 lxc.net.1.hwaddr = 4a:49:43:49:79:bd
2356 lxc.net.1.ipv4.address = 10.2.3.4/24
2357 lxc.net.1.ipv4.address = 192.168.10.125/24
2358 lxc.net.1.ipv6.address = 2003:db8:1:0:214:1234:fe0b:3596
2359 lxc.net.2.type = phys
2360 lxc.net.2.flags = up
2361 lxc.net.2.link = dummy0
2362 lxc.net.2.hwaddr = 4a:49:43:49:79:ff
2363 lxc.net.2.ipv4.address = 10.2.3.6/24
2364 lxc.net.2.ipv6.address = 2003:db8:1:0:214:1234:fe0b:3297
2365 lxc.cgroup.cpuset.cpus = 0,1
2366 lxc.cgroup.cpu.shares = 1234
2367 lxc.cgroup.devices.deny = a
2368 lxc.cgroup.devices.allow = c 1:3 rw
2369 lxc.cgroup.devices.allow = b 8:0 rw
2370 lxc.mount.fstab = /etc/fstab.complex
2371 lxc.mount.entry = /lib /root/myrootfs/lib none ro,bind 0 0
2372 lxc.rootfs.path = dir:/mnt/rootfs.complex
2373 lxc.cap.drop = sys_module mknod setuid net_raw
2374 lxc.cap.drop = mac_override
2375 </programlisting>
2376 </refsect2>
2377
2378 </refsect1>
2379
2380 <refsect1>
2381 <title>See Also</title>
2382 <simpara>
2383 <citerefentry>
2384 <refentrytitle><command>chroot</command></refentrytitle>
2385 <manvolnum>1</manvolnum>
2386 </citerefentry>,
2387
2388 <citerefentry>
2389 <refentrytitle><command>pivot_root</command></refentrytitle>
2390 <manvolnum>8</manvolnum>
2391 </citerefentry>,
2392
2393 <citerefentry>
2394 <refentrytitle><filename>fstab</filename></refentrytitle>
2395 <manvolnum>5</manvolnum>
2396 </citerefentry>,
2397
2398 <citerefentry>
2399 <refentrytitle><filename>capabilities</filename></refentrytitle>
2400 <manvolnum>7</manvolnum>
2401 </citerefentry>
2402 </simpara>
2403 </refsect1>
2404
2405 &seealso;
2406
2407 <refsect1>
2408 <title>Author</title>
2409 <para>Daniel Lezcano <email>daniel.lezcano@free.fr</email></para>
2410 </refsect1>
2411
2412 </refentry>
2413
2414 <!-- Keep this comment at the end of the file
2415 Local variables:
2416 mode: sgml
2417 sgml-omittag:t
2418 sgml-shorttag:t
2419 sgml-minimize-attributes:nil
2420 sgml-always-quote-attributes:t
2421 sgml-indent-step:2
2422 sgml-indent-data:t
2423 sgml-parent-document:nil
2424 sgml-default-dtd-file:nil
2425 sgml-exposed-tags:nil
2426 sgml-local-catalogs:nil
2427 sgml-local-ecat-files:nil
2428 End:
2429 -->