Files
osmedeus/build/docker/docker-compose.canary.yaml
T
j3ssie 167fff791d feat: add repo slug extraction for code hosting URLs and enhance archive format detection
- Extract 'owner__repo' slugs from code hosting platforms (GitHub, GitLab, Bitbucket, Codeberg) for workspace naming preference
- Implement magic byte detection for archive formats in extractTo() function to support headerless archives
- Implement GetRunSteps() and GetRunArtifacts() API endpoints with database queries
- Format code for consistency in constants, type mappings, and test files
2026-02-10 18:32:06 +07:00

25 lines
589 B
YAML

services:
osm-canary:
build:
context: ../..
dockerfile: build/docker/Dockerfile.canary
container_name: osm-canary
hostname: osm-canary
volumes:
- canary-workspaces:/root/workspaces-osmedeus
- canary-data:/root/osmedeus-base
- ../../../osmedeus-workflow:/root/osmedeus-base/workflows
ports:
- "8002:8002"
healthcheck:
test: ["CMD", "curl", "-sf", "http://localhost:8002/health"]
interval: 10s
timeout: 5s
start_period: 30s
retries: 5
restart: "no"
volumes:
canary-workspaces:
canary-data: