Files
kenn-io--agentsview/docker-compose.test.yml
wehub-resource-sync f99010fae1
Desktop Artifacts / Desktop Build (Linux) (push) Waiting to run
Desktop Artifacts / Desktop Build (Windows) (push) Waiting to run
Desktop Artifacts / Desktop Build (Linux (arm64)) (push) Waiting to run
Desktop Artifacts (macOS) / Desktop Build (macOS (aarch64)) (push) Waiting to run
Desktop Artifacts (macOS) / Desktop Build (macOS (x86_64)) (push) Waiting to run
CI / Go Test (windows-latest) (push) Waiting to run
CI / Desktop Unit Tests (Windows) (push) Waiting to run
CI / lint (push) Failing after 1s
CI / frontend (push) Failing after 1s
CI / scripts (push) Failing after 1s
CI / Go Test (ubuntu-latest) (push) Failing after 0s
CI / frontend-node-25 (push) Failing after 1s
CI / docs (push) Failing after 0s
CI / coverage (push) Failing after 0s
CI / e2e (push) Failing after 0s
Docker / build-and-push (push) Failing after 1s
CI / integration (push) Failing after 4m43s
chore: import upstream snapshot with attribution
2026-07-13 12:30:36 +08:00

36 lines
951 B
YAML

# Docker Compose file for integration testing
# Usage:
# make postgres-up / make test-postgres / make postgres-down
# make ssh-up / make test-ssh / make ssh-down
services:
postgres:
image: pgvector/pgvector:pg16
environment:
POSTGRES_USER: agentsview_test
POSTGRES_PASSWORD: agentsview_test_password
POSTGRES_DB: agentsview_test
ports:
- "5433:5432" # Non-standard port to avoid conflict with local postgres
healthcheck:
test: ["CMD-SHELL", "pg_isready -U agentsview_test -d agentsview_test"]
interval: 2s
timeout: 5s
retries: 10
tmpfs:
- /var/lib/postgresql/data # Use tmpfs for faster tests, no persistence needed
sshd:
build:
context: .
dockerfile: testdata/ssh/Dockerfile
ports:
- "2222:22"
healthcheck:
test: ["CMD-SHELL", "nc -z localhost 22"]
interval: 2s
timeout: 5s
retries: 10
tmpfs:
- /tmp