Skip to content

Instantly share code, notes, and snippets.

@fortunto2
Created October 20, 2025 20:51
Show Gist options
  • Select an option

  • Save fortunto2/3e4330a212033ce4e936c977407ad3a2 to your computer and use it in GitHub Desktop.

Select an option

Save fortunto2/3e4330a212033ce4e936c977407ad3a2 to your computer and use it in GitHub Desktop.
agent0
version: '3.8'
services:
agent-zero-run:
image: agent0ai/agent-zero:latest
container_name: agent-zero-run
ports:
- "50001:80"
- "3003:3000"
env_file:
- .env
volumes:
- ./data:/a0
- ./root:/root
restart: always
networks:
- apps_net
cloudflared:
image: cloudflare/cloudflared:latest
container_name: cloudflared
command:
- tunnel
- --no-autoupdate
- run
- --token
- XXXXXX
depends_on:
- agent-zero-run
restart: unless-stopped
networks:
- apps_net
networks:
apps_net:
external: true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment