Title logo
griefed/monitoring.

Small monitoring app.

1,326 0 arm64 unknown unknown amd64 unknown arm

Build Information

General build information for this image

Docker Hub griefed/monitoring
Build Time 06 May 2023 20:06:57
Base Image griefed/baseimage-ubuntu-jdk-8:2.0.7
Category Monitoring
Synchronised Yes
Stable Yes
Deprecated No

Support Information

External links and support

Tracked Tags

Known tags which link to a specific branched app version.

Branch Version Built
latest latest 06 May 2023 at 20:06:56

Daily Pull Statistics

Running this as a container

Basic examples for getting this image running as a container

Docker Compose

---
version: "2"
services:
  monitoring:
    image: griefed/monitoring:latest
    container_name: monitoring
    restart: unless-stopped
    environment:
      - TZ=Europe/Berlin # Your timezone
      - PUID=1000 # Your users ID
      - PGID=1000 # Your groups ID
    volumes:
      - /host/path/to/config:/config # Path on your host where configuration files of Monitoring will be stored.
    ports:
      - 8080:8080/tcp # HTTP port

CLI

docker create \
  --name=monitoring \
  -e TZ=Europe/Berlin `# Your timezone` \
  -e PUID=1000 `# Your users ID` \
  -e PGID=1000 `# Your groups ID` \
  -v /host/path/to/config:/config `# Path on your host where configuration files of Monitoring will be stored.` \
  -p 8080:8080/tcp `# HTTP port` \
  --restart unless-stopped \
  griefed/monitoring:latest