From 68f97de1eaf0fb582eacd9b5e2690d8609f8db61 Mon Sep 17 00:00:00 2001 From: poprhythm Date: Sat, 14 Feb 2026 02:44:59 +0000 Subject: [PATCH] Add RackPeek infrastructure documentation tool RackPeek is a CLI tool to discover, manage, and document IT infrastructure and home lab setups. It will help track hardware, services, networks, and their relationships in a scriptable way. --- rackpeek/docker-compose.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 rackpeek/docker-compose.yaml diff --git a/rackpeek/docker-compose.yaml b/rackpeek/docker-compose.yaml new file mode 100644 index 0000000..39cbc02 --- /dev/null +++ b/rackpeek/docker-compose.yaml @@ -0,0 +1,18 @@ +services: + rackpeek: + container_name: rackpeek + image: aptacode/rackpeek:latest + ports: + - "8080:8080" + volumes: + - /srv/rackpeek-config:/app/config + environment: + - VIRTUAL_HOST=rackpeek.kolpacksoftware.com + - VIRTUAL_PORT=8080 + - LETSENCRYPT_HOST=rackpeek.kolpacksoftware.com + restart: unless-stopped + +networks: + default: + external: + name: npm-network