Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ix-dev/community/zerobyte/app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ sources:
- https://github.com/nicotsx/zerobyte
title: Zerobyte
train: community
version: 1.1.16
version: 1.1.17
5 changes: 3 additions & 2 deletions ix-dev/community/zerobyte/questions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ questions:
- variable: mount_fuse
label: Mount FUSE / Add SYS_ADMIN Capability
description: |
Mount the FUSE device inside the container and add the SYS_ADMIN capability.</br>
Mount the FUSE device inside the container, adds the SYS_ADMIN capability and sets apparmor to unconfined.</br>
This is required for mounting remote backends like SMB, NFS, rclone, etc.</br>
WARNING: This will give the container very high privileges on the host system,</br>
including the potential to interact with or damage ZFS pools and datasets.</br>
Expand Down Expand Up @@ -239,7 +239,8 @@ questions:
"null": true
- variable: priority
label: Priority (Optional)
description: Indicates in which order Compose connects the service's containers to its networks.
description: Indicates in which order Compose connects the service's containers
to its networks.
schema:
type: int
"null": true
Expand Down
1 change: 1 addition & 0 deletions ix-dev/community/zerobyte/templates/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
{% endif %}
{% do c1.add_caps(["SYS_ADMIN"]) %}
{% do c1.devices.add_device("/dev/fuse", "/dev/fuse") %}
{% do c1.add_security_opt("apparmor", "unconfined") %}
{% endif %}

{% do c1.healthcheck.set_test("wget", {"port": values.consts.internal_web_port, "path": "/api/healthcheck"}) %}
Expand Down