mirror of
https://github.com/nextcloud/all-in-one.git
synced 2026-02-04 04:56:52 +00:00
Add Community-Container GLANCES
Signed-off-by: Pi-Farm <meik@baum-hessen.de>
This commit is contained in:
parent
4ecb870885
commit
cda1fddde1
2 changed files with 55 additions and 0 deletions
39
community-containers/glances/code.json
Normal file
39
community-containers/glances/code.json
Normal 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"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
16
community-containers/glances/readme.md
Normal file
16
community-containers/glances/readme.md
Normal file
|
|
@ -0,0 +1,16 @@
|
||||||
|
## Glances
|
||||||
|
This container starts Glances, a web-based info-board, and auto-configures it for you.
|
||||||
|
|
||||||
|
### Notes
|
||||||
|
- After adding and starting the container, you can directly visit http://ip.address.of.server:61208/ and access your new Glances instance!
|
||||||
|
- In order to access your Glances outside the local network, you have to set up your own reverse proxy. You can set up a reverse proxy following [these instructions](https://github.com/nextcloud/all-in-one/blob/main/reverse-proxy.md) OR use the [Caddy](https://github.com/nextcloud/all-in-one/tree/main/community-containers/caddy) community container.
|
||||||
|
- If you have a firewall like ufw configured, you might need to open all Glances ports in there first in order to make it work. Especially port 61208 is important!
|
||||||
|
- If you want to secure the installation with fail2ban, you might want to check out https://github.com/nextcloud/all-in-one/tree/main/community-containers/fail2ban
|
||||||
|
- The data of Glances will be automatically included in AIO's backup solution!
|
||||||
|
- See [here](https://github.com/nextcloud/all-in-one/tree/main/community-containers#community-containers) how to add it to the AIO stack.
|
||||||
|
|
||||||
|
### Repository
|
||||||
|
https://github.com/nicolargo/glances
|
||||||
|
|
||||||
|
### Maintainer
|
||||||
|
https://github.com/pi-farm
|
||||||
Loading…
Add table
Add a link
Reference in a new issue