-
As option See |
Beta Was this translation helpful? Give feedback.
Answered by
szaimen
Oct 17, 2023
Replies: 1 comment
-
Hi, I just wanted to mention that we have this now: https://github.com/nextcloud/all-in-one/tree/main/community-containers#how-to-add-containers. So the community could potentially add Scrutiny as additional container. Feel free to ping me if you should need help on this! Regarding the json, I just leave this here as an example: {
"aio_services_v1": [
{
"container_name": "nextcloud-aio-scrutiny",
"display_name": "Netdata",
"documentation": "https://github.com/nextcloud/all-in-one/tree/main/community-containers/netdata",
"image": "ghcr.io/analogj/scrutiny", // this will not work because ghcr.io is not supported
"image_tag": "master-omnibus",
"internal_port": "8080",
"restart": "unless-stopped",
"ports": [
{
"ip_binding": "%APACHE_IP_BINDING%",
"port_number": "8080", // this will conflict with AIO ports
"protocol": "tcp"
}
],
"cap_add": [
"SYS_RAWIO",
"SYS_ADMIN"
],
"environment": [
"TZ=%TIMEZONE%",
],
"volumes": [
{
"source": "nextcloud_aio_scrutiny",
"destination": "/opt/scrutiny/config",
"writeable": true
},
{
"source": "nextcloud_aio_scrutiny_db",
"destination": "/opt/scrutiny/influxdb",
"writeable": true
},
{
"source": "/run/udev",
"destination": "/run/udev",
"writeable": false
},
{
"source": "/dev", // this is unsafe and gives the container root privileges on the host basically
"destination": "/dev",
"writeable": false
},
],
"backup_volumes": [
"nextcloud_aio_scrutiny",
"nextcloud_aio_scrutiny_db"
]
}
]
} |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
szaimen
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi, I just wanted to mention that we have this now: https://github.com/nextcloud/all-in-one/tree/main/community-containers#how-to-add-containers. So the community could potentially add Scrutiny as additional container. Feel free to ping me if you should need help on this!
Regarding the json, I just leave this here as an example: