mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-01-30 22:32:04 +00:00
- Add missing system libraries required by Playwright/Chromium in server and dev images\n- Document optional Playwright browser cache volume in docker-compose.override.yml.example
43 lines
1.8 KiB
Plaintext
43 lines
1.8 KiB
Plaintext
services:
|
|
server:
|
|
volumes:
|
|
# Mount your workspace directory to /projects inside the container
|
|
# Example: mount your local /workspace to /projects inside the container
|
|
- /Users/webdevcody/Workspace/automaker-workspace:/projects:rw
|
|
|
|
# ===== CLI Authentication (Optional) =====
|
|
# Mount host CLI credentials to avoid re-authenticating in container
|
|
|
|
# Claude CLI - mount your ~/.claude directory (Linux/Windows)
|
|
# This shares your 'claude login' OAuth session with the container
|
|
# - ~/.claude:/home/automaker/.claude
|
|
|
|
# Cursor CLI - mount your ~/.cursor directory (Linux/Windows)
|
|
# This shares your 'cursor-agent login' OAuth session with the container
|
|
# - ~/.cursor:/home/automaker/.cursor
|
|
|
|
# OpenCode CLI - mount your ~/.local/share/opencode directory
|
|
# This shares your 'opencode auth login' session with the container
|
|
# - ~/.local/share/opencode:/home/automaker/.local/share/opencode
|
|
# - ~/.config/opencode:/home/automaker/.config/opencode
|
|
|
|
# Playwright browser cache - persists installed browsers across container restarts
|
|
# Run 'npx playwright install --with-deps chromium' once, and it will persist
|
|
# - playwright-cache:/home/automaker/.cache/ms-playwright
|
|
environment:
|
|
# Set root directory for all projects and file operations
|
|
# Users can only create/open projects within this directory
|
|
- ALLOWED_ROOT_DIRECTORY=/projects
|
|
- NODE_ENV=development
|
|
|
|
# ===== macOS Users =====
|
|
# On macOS, OAuth tokens are stored in SQLite databases, not plain files.
|
|
# Extract your Cursor token with: ./scripts/get-cursor-token.sh
|
|
# Then set it here or in your .env file:
|
|
# - CURSOR_API_KEY=${CURSOR_API_KEY:-}
|
|
|
|
volumes:
|
|
# Playwright cache volume (persists Chromium installs)
|
|
# playwright-cache:
|
|
# name: automaker-playwright-cache
|