Archon/deploy/docker-compose.yml
Cole Medin ae346c2a67 feat: prepare for open-source migration to coleam00/Archon
- Replace all dynamous-community/remote-coding-agent references with coleam00/Archon
- Replace all ghcr.io/dynamous-community/remote-coding-agent with ghcr.io/coleam00/archon
- Change license from proprietary Dynamous to MIT
- Fix cd directory name in docs (remote-coding-agent → Archon)
- Remove hardcoded local paths from skills and docs
- Add Windows x64 binary to release pipeline (cross-compiled from Linux)
- Add --minify --bytecode flags to binary compilation
- Create PowerShell install script (scripts/install.ps1)
- Fix isBinaryBuild() detection for Bun 1.3.5+ (use import.meta.dir virtual FS check)
- Scaffold Astro Starlight docs site at website/ (Astro 6 + Starlight 0.38)
- Add deploy-docs.yml workflow for GitHub Pages
- Update test.yml branch triggers (develop → dev)
- Add install section with curl/PowerShell/Homebrew/Docker to README
- Add badges and archon.diy docs link to README
- Create SECURITY.md with vulnerability disclosure policy
- Update CONTRIBUTING.md for public audience
- Add website/ and eslint ignores for Astro-generated files

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-04 10:47:22 -05:00

49 lines
1.3 KiB
YAML

# =============================================================================
# Archon - Docker Compose for End Users (pre-built image)
# =============================================================================
#
# Usage:
# 1. Copy this file and .env.example to your server
# 2. Rename .env.example to .env and configure
# 3. Run: docker compose up -d
#
# For full documentation, see:
# https://github.com/coleam00/Archon
services:
app:
image: ghcr.io/coleam00/archon:latest
restart: unless-stopped
env_file: .env
environment:
ARCHON_DOCKER: "true"
ports:
- "${PORT:-3000}:${PORT:-3000}"
volumes:
- ${ARCHON_DATA:-archon_data}:/.archon
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:${PORT:-3000}/api/health"]
interval: 30s
timeout: 10s
retries: 3
start_period: 15s
# Uncomment to run PostgreSQL locally
# postgres:
# image: postgres:17-alpine
# restart: unless-stopped
# environment:
# POSTGRES_DB: remote_coding_agent
# POSTGRES_USER: postgres
# POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-postgres}
# volumes:
# - postgres_data:/var/lib/postgresql/data
# healthcheck:
# test: ["CMD-SHELL", "pg_isready -U postgres"]
# interval: 10s
# timeout: 5s
# retries: 5
volumes:
archon_data:
# postgres_data: