Initial import of Dell OpenManage Cockpit for ATC.

Interactive OME fleet UI with topology, KPI popups, in-browser SSH, chat, tickets, and full inventory landscape.
This commit is contained in:
mo
2026-07-17 04:00:38 +02:00
commit b73ff9465c
20 changed files with 7477 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
services:
ome-cockpit:
build: .
container_name: ome-cockpit
restart: unless-stopped
ports:
- "3090:8090"
env_file:
- .env
volumes:
- ./ui:/ui:ro
- ./api/main.py:/app/main.py:ro
- ./data:/data
healthcheck:
test: ["CMD", "python", "-c", "import urllib.request; urllib.request.urlopen(\"http://127.0.0.1:8090/api/health\")"]
interval: 20s
timeout: 5s
retries: 5
start_period: 25s