Files
agent0/docker-compose.yml
T

108 lines
2.4 KiB
YAML
Raw Normal View History

2026-04-11 00:43:18 +02:00
services:
2026-04-11 12:59:02 +02:00
2026-04-17 21:45:05 +02:00
dobby:
2026-04-11 00:43:18 +02:00
image: agent0ai/agent-zero:latest
2026-04-17 21:45:05 +02:00
container_name: dobby
2026-04-11 00:43:18 +02:00
ports:
2026-04-17 21:45:05 +02:00
- "50001:80"
2026-04-11 00:43:18 +02:00
volumes:
2026-04-17 21:45:05 +02:00
- ./agents/dobby:/a0/usr
- ${HOME}/.ssh:/root/.ssh
2026-04-11 00:43:18 +02:00
restart: unless-stopped
2026-04-11 14:26:19 +02:00
environment:
AUTH_LOGIN: ${AUTH_LOGIN}
AUTH_PASSWORD: ${AUTH_PASSWORD}
2026-04-11 12:59:02 +02:00
extra_hosts:
2026-04-17 21:45:05 +02:00
- "host.docker.internal:host-gateway"
gemma:
image: agent0ai/agent-zero:latest
container_name: gemma
ports:
- "50002:80"
volumes:
- ./agents/gemma:/a0/usr
- ${HOME}/.ssh:/root/.ssh
restart: unless-stopped
environment:
AUTH_LOGIN: ${AUTH_LOGIN}
AUTH_PASSWORD: ${AUTH_PASSWORD}
extra_hosts:
- "host.docker.internal:host-gateway"
gunnar:
image: agent0ai/agent-zero:latest
container_name: gunnar
ports:
- "50003:80"
volumes:
- ./agents/gunnar:/a0/usr
- ${HOME}/.ssh:/root/.ssh
restart: unless-stopped
environment:
AUTH_LOGIN: ${AUTH_LOGIN}
AUTH_PASSWORD: ${AUTH_PASSWORD}
extra_hosts:
- "host.docker.internal:host-gateway"
rind:
image: agent0ai/agent-zero:latest
container_name: rind
ports:
- "50005:80"
volumes:
- ./agents/rind:/a0/usr
- ${HOME}/.ssh:/root/.ssh
restart: unless-stopped
environment:
AUTH_LOGIN: ${AUTH_LOGIN}
AUTH_PASSWORD: ${AUTH_PASSWORD}
extra_hosts:
- "host.docker.internal:host-gateway"
abyssinthia:
image: agent0ai/agent-zero:latest
container_name: abyssinthia
ports:
- "50006:80"
volumes:
- ./agents/abyssinthia:/a0/usr
- ${HOME}/.ssh:/root/.ssh
restart: unless-stopped
environment:
AUTH_LOGIN: ${AUTH_LOGIN}
AUTH_PASSWORD: ${AUTH_PASSWORD}
extra_hosts:
- "host.docker.internal:host-gateway"
gerhard:
image: agent0ai/agent-zero:latest
container_name: gerhard
ports:
- "50007:80"
volumes:
- ./agents/gerhard:/a0/usr
- ${HOME}/.ssh:/root/.ssh
restart: unless-stopped
environment:
AUTH_LOGIN: ${AUTH_LOGIN}
AUTH_PASSWORD: ${AUTH_PASSWORD}
extra_hosts:
- "host.docker.internal:host-gateway"
2026-04-11 12:59:02 +02:00
glitch-tunnel:
build:
context: .
dockerfile: Dockerfile.tunnel
container_name: glitch-tunnel
restart: always
volumes:
2026-04-17 21:45:05 +02:00
- ./tunnel:/run/tunnel:ro
2026-04-11 12:59:02 +02:00
depends_on:
2026-04-17 21:45:05 +02:00
- dobby
- gemma
- gunnar
- rind
- abyssinthia
- gerhard