Skip to main content

Netbox

Netbox is an open-source IP address management (IPAM) and data center infrastructure management (DCIM) tool. This instance runs on CentOS and is accessible via netbox.billpantzartzis.info.

Docker Compose

version: '3.4'
services:
netbox:
image: netboxcommunity/netbox:latest
container_name: netbox
depends_on:
- postgres
- redis
env_file: env/netbox.env
ports:
- "8010:8080"
volumes:
- ./media:/opt/netbox/netbox/media
postgres:
image: postgres:14-alpine
container_name: netbox-postgres
env_file: env/postgres.env
volumes:
- pg_data:/var/lib/postgresql/data
redis:
image: redis:7-alpine
container_name: netbox-redis
restart: unless-stopped

volumes:
pg_data:

Architecture Overview

Service Details