Initial commit

This commit is contained in:
2026-04-05 15:28:04 +02:00
commit 0435b3d07d
43 changed files with 4394 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
services:
skippy-agent:
image: ${SKIPPY_IMAGE}
container_name: skippy-agent
restart: unless-stopped
environment:
DATA_DIR: /app/data
SKIPPER_URL: ${SKIPPER_URL}
AGENT_ID: ${AGENT_ID}
AGENT_TOKEN: ${AGENT_TOKEN}
POLL_INTERVAL_MS: ${POLL_INTERVAL_MS:-5000}
HEARTBEAT_INTERVAL_MS: ${HEARTBEAT_INTERVAL_MS:-15000}
SKIPPY_COMPOSE_BASE_DIR: /opt/skipper/tenants
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- ./data:/app/data
- ./tenants:/opt/skipper/tenants