chore: import upstream snapshot with attribution
CI / unit-test (push) Has been cancelled
CI / detect-changes (push) Has been cancelled
CI / build (push) Has been cancelled
Publish docs via GitHub Pages / Deploy docs (push) Has been cancelled
CI / test-harness (push) Has been cancelled
CI / generate-e2e-matrix (push) Has been cancelled
CI / e2e (push) Has been cancelled
CI / build-ui (push) Has been cancelled
Release Drafter / update_release_draft (push) Has been cancelled
UI v2 Integration CI / E2E (Integration) (push) Has been cancelled
UI v2 CI / Lint, Format & Test (push) Has been cancelled
UI v2 CI / E2E (Mocked) (push) Has been cancelled
CI / unit-test (push) Has been cancelled
CI / detect-changes (push) Has been cancelled
CI / build (push) Has been cancelled
Publish docs via GitHub Pages / Deploy docs (push) Has been cancelled
CI / test-harness (push) Has been cancelled
CI / generate-e2e-matrix (push) Has been cancelled
CI / e2e (push) Has been cancelled
CI / build-ui (push) Has been cancelled
Release Drafter / update_release_draft (push) Has been cancelled
UI v2 Integration CI / E2E (Integration) (push) Has been cancelled
UI v2 CI / Lint, Format & Test (push) Has been cancelled
UI v2 CI / E2E (Mocked) (push) Has been cancelled
This commit is contained in:
@@ -0,0 +1,52 @@
|
||||
services:
|
||||
conductor-server:
|
||||
environment:
|
||||
- CONFIG_PROP=config-postgres.properties
|
||||
# Forwarded from the host shell when set. Empty/absent ⇒ the matching AI provider
|
||||
# stays unconfigured and the LLM e2e tests that depend on it self-skip.
|
||||
- ANTHROPIC_API_KEY=${ANTHROPIC_API_KEY:-}
|
||||
- OPENAI_API_KEY=${OPENAI_API_KEY:-}
|
||||
- COHERE_API_KEY=${COHERE_API_KEY:-}
|
||||
image: conductor:server
|
||||
container_name: conductor-server-e2e
|
||||
networks:
|
||||
- internal
|
||||
ports:
|
||||
- "8000:8080"
|
||||
healthcheck:
|
||||
test: [ "CMD", "curl", "-I", "-XGET", "http://localhost:8080/health" ]
|
||||
interval: 10s
|
||||
timeout: 10s
|
||||
retries: 20
|
||||
links:
|
||||
- conductor-postgres:postgresdb
|
||||
depends_on:
|
||||
conductor-postgres:
|
||||
condition: service_healthy
|
||||
logging:
|
||||
driver: "json-file"
|
||||
options:
|
||||
max-size: "10k"
|
||||
max-file: "3"
|
||||
|
||||
conductor-postgres:
|
||||
image: postgres:16
|
||||
container_name: conductor-postgres-e2e
|
||||
environment:
|
||||
- POSTGRES_USER=conductor
|
||||
- POSTGRES_PASSWORD=conductor
|
||||
networks:
|
||||
- internal
|
||||
healthcheck:
|
||||
test: timeout 5 bash -c 'cat < /dev/null > /dev/tcp/localhost/5432'
|
||||
interval: 5s
|
||||
timeout: 5s
|
||||
retries: 12
|
||||
logging:
|
||||
driver: "json-file"
|
||||
options:
|
||||
max-size: "1k"
|
||||
max-file: "3"
|
||||
|
||||
networks:
|
||||
internal:
|
||||
Reference in New Issue
Block a user