Created
October 20, 2025 20:51
-
-
Save fortunto2/3e4330a212033ce4e936c977407ad3a2 to your computer and use it in GitHub Desktop.
agent0
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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