David Boreham
d9bb6b3588
All checks were successful
Lint Checks / Run linter (push) Successful in 33s
Publish / Build and publish (push) Successful in 1m2s
Webapp Test / Run webapp test suite (push) Successful in 3m5s
Deploy Test / Run deploy test suite (push) Successful in 4m20s
Smoke Test / Run basic test suite (push) Successful in 4m50s
Reviewed-on: #737
21 lines
417 B
YAML
21 lines
417 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:
|