irishlab.io

This is my homelab, there are many like this but this one is mine.

PeaNUT

PeaNUT

Create a new directory for PeaNUT and navigate into it.

mkdir -p /opt/stacks/peanut
cd /opt/stacks/peanut
nano compose.yml
---
name: peanut

services:
  peanut:
    container_name: peanut
    image: brandawg93/peanut:5.7.2
    restart: unless-stopped
    volumes:
      - "./config:/config"
    ports:
      - 8080:8080
    env_file: .env
# This file is used to set environment variables for the PeaNUT Docker container.
WEB_PORT=8080
WEB_USERNAME= "your-username-here"
WEB_PASSWORD= "your-password-here"
nano /opt/stacks/peanut/config/settings.yml
NUT_SERVERS:
  - HOST: localhost
    PORT: 3493
    USERNAME: user
    PASSWORD: pass
INFLUX_HOST: ''
INFLUX_TOKEN: ''
INFLUX_ORG: ''
INFLUX_BUCKET: ''
INFLUX_INTERVAL: 10
Last updated on 26 Oct 2019
Published on 23 Nov 2018
 Edit on GitHub