feat: Initial code
All checks were successful
Check Code Quality / RuffCheck (push) Successful in 1m4s
Build Docker / BuildImage (push) Successful in 1m26s

This commit is contained in:
2026-03-26 23:07:05 +11:00
parent d8ede00901
commit 0ce79935d7
24 changed files with 2527 additions and 143 deletions

View File

@@ -0,0 +1,15 @@
services:
docker-inventory-agent:
build: .
container_name: docker-inventory-agent
restart: unless-stopped
environment:
AGENT_TOKEN: change-me
DOCKER_HOST: unix:///var/run/docker.sock
NGINX_CONFIG_DIR: /mnt/nginx
PORT: "9090"
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
- /etc/nginx:/mnt/nginx:ro
ports:
- "9090:9090"