68f97de1ea
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.
19 lines
407 B
YAML
19 lines
407 B
YAML
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
|