Files
ome-cockpit/docker-compose.yml
T
mo b73ff9465c 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.
2026-07-17 04:00:38 +02:00

20 lines
467 B
YAML

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