blob: 8e3c62640ace2ce185ab9f8144d6a82b3832cee1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
immich {
vnet;
persist;
exec.clean;
allow.raw_sockets;
mount.devfs;
allow.mount;
allow.mount.devfs;
allow.mount.linprocfs;
allow.mount.linsysfs;
allow.mount.tmpfs;
allow.mount.nullfs;
enforce_statfs = 1;
devfs_ruleset = 4;
host.hostname = "${name}";
path = "/usr/local/jails/containers/${name}";
exec.start = "/bin/sh /etc/rc";
exec.stop = "/bin/sh /etc/rc.shutdown";
# Networking
exec.prestart += "jail_net prestart {{ jail_num }} ${name}";
exec.poststart += "jail_net poststart {{ jail_num }} ${name}";
exec.prestop += "jail_net prestop {{ jail_num }} ${name}";
exec.poststop += "jail_net poststop {{ jail_num }} ${name}";
# nullfs mounts
{% for mount in nullfs | default([]) | normalize_nullfs %}
mount += "{{ mount.src }} ${path}{{ mount.dst }} nullfs {{ mount.mode | default('rw') }} 0 0";
{% endfor %}
{% for img in oci_images %}
# Mounts for {{ img.name }} rootfs
mount += "linprocfs $path/image/{{ img.name }}/proc linprocfs rw 0 0";
mount += "linsysfs $path/image/{{ img.name }}/sys linsysfs rw 0 0";
mount += "devfs $path/image/{{ img.name }}/dev devfs rw 0 0";
mount += "tmpfs $path/image/{{ img.name }}/tmp tmpfs rw 0 0";
mount += "tmpfs $path/image/{{ img.name }}/run tmpfs rw 0 0";
{% endfor %}
}
|