Add Community-Container GLANCES

Signed-off-by: Pi-Farm <meik@baum-hessen.de>
This commit is contained in:
pi-farm 2026-01-22 16:39:26 +01:00 committed by Simon L.
parent 4ecb870885
commit cda1fddde1
2 changed files with 55 additions and 0 deletions

View file

@ -0,0 +1,39 @@
{
"aio_services_v1": [
{
"container_name": "nextcloud-aio-glances",
"display_name": "Glances",
"documentation": "https://github.com/nextcloud/all-in-one/tree/main/community-containers/glances",
"image": "nicolargo/glances",
"image_tag": "latest-full",
"internal_port": "61208",
"restart": "unless-stopped",
"ports": [
{
"ip_binding": "",
"port_number": "61208",
"protocol": "tcp"
}
],
"volumes": [
{
"source": "nextcloud_aio_glances",
"destination": "/etc/glances",
"writeable": true
},
{
"source": "/var/run/docker.sock",
"destination": "/var/run/docker.sock",
"writeable": false
}
],
"environment": [
"GLANCES_OPT=-w",
"8008:61208"
],
"backup_volumes": [
"nextcloud_aio_glances"
]
}
]
}