feat: add first page with auth and containers list and agents

This commit is contained in:
2026-05-18 08:24:02 +02:00
parent 446087ae01
commit 3b4a841bf5
56 changed files with 16267 additions and 0 deletions

13
docker-compose.agent.yml Normal file
View File

@ -0,0 +1,13 @@
services:
agent:
image: ghcr.io/containarr/agent:latest # or build locally
# build:
# context: .
# dockerfile: agent/Dockerfile
restart: unless-stopped
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
environment:
CONTAINARR_SERVER_URL: "${CONTAINARR_SERVER_URL}"
CONTAINARR_AGENT_TOKEN: "${CONTAINARR_AGENT_TOKEN}"
RUST_LOG: "info"