mirror of
https://github.com/j3ssie/osmedeus.git
synced 2026-09-05 17:27:44 +02:00
- 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
25 lines
589 B
YAML
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:
|