Some checks failed
Lint Checks / Run linter (push) Successful in 14s
K8s Deployment Control Test / Run deployment control suite on kind/k8s (push) Failing after 31s
Database Test / Run database hosting test on kind/k8s (push) Failing after 31s
Container Registry Test / Run contaier registry hosting test on kind/k8s (push) Failing after 36s
Fix trailing whitespace and end-of-file issues across codebase. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
21 lines
413 B
YAML
21 lines
413 B
YAML
services:
|
|
|
|
database:
|
|
image: cerc/test-database-container:local
|
|
restart: always
|
|
volumes:
|
|
- db-data:/var/lib/postgresql/data
|
|
environment:
|
|
POSTGRES_USER: "test-user"
|
|
POSTGRES_DB: "test-db"
|
|
POSTGRES_PASSWORD: "password"
|
|
POSTGRES_INITDB_ARGS: "-E UTF8 --locale=C"
|
|
ports:
|
|
- "5432"
|
|
|
|
test-client:
|
|
image: cerc/test-database-client:local
|
|
|
|
volumes:
|
|
db-data:
|