Files
archy/docker-compose.demo.yml
Dorian 0264920e33 fix: add DNS config to demo backend container for API access
Explicit Google/Cloudflare DNS prevents resolution failures when
the Docker host's DNS is unavailable or misconfigured.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-08 00:21:01 +00:00

34 lines
922 B
YAML

# Archipelago Demo Stack - Mock backend + Vue UI + AIUI Chat
# Deploy via Portainer: Web editor -> paste this, or deploy from repo
# Access at http://localhost:4848 (or your host:4848)
#
# Required: Set ANTHROPIC_API_KEY in environment or .env file for chat to work
# Optional: Chat will show fallback message if no key is set
services:
neode-backend:
build:
context: .
dockerfile: neode-ui/Dockerfile.backend
container_name: archy-demo-backend
environment:
VITE_DEV_MODE: "existing" # Skip setup/onboarding, go straight to login
ANTHROPIC_API_KEY: ${ANTHROPIC_API_KEY:-}
expose:
- "5959"
dns:
- 8.8.8.8
- 1.1.1.1
restart: unless-stopped
neode-web:
build:
context: .
dockerfile: neode-ui/Dockerfile.web
container_name: archy-demo-web
ports:
- "4848:80"
depends_on:
- neode-backend
restart: unless-stopped