24 lines
741 B
YAML
24 lines
741 B
YAML
# Development Ecosystem Docker Compose
|
|
#
|
|
# Builds and tests the complete ecosystem installation.
|
|
#
|
|
# Usage:
|
|
# docker compose build # Build the test image
|
|
# docker compose up # Run installation tests
|
|
# docker compose down # Cleanup
|
|
|
|
services:
|
|
ecosystem-test:
|
|
build: .
|
|
container_name: development-hub-test
|
|
environment:
|
|
- QT_QPA_PLATFORM=offscreen
|
|
- DISPLAY=:99
|
|
# For local development testing, mount the local repos:
|
|
# volumes:
|
|
# - ./:/workspace/development-hub:ro
|
|
# - ../CmdForge:/workspace/CmdForge:ro
|
|
# - ../ramble:/workspace/ramble:ro
|
|
# - ../artifact-editor:/workspace/artifact-editor:ro
|
|
# - ../orchestrated-discussions:/workspace/orchestrated-discussions:ro
|