10 lines
538 B
YAML
10 lines
538 B
YAML
# it is intended that this be used exclusive of all other docker-compose.*yml files in CI
|
|
version: "2.1"
|
|
services:
|
|
web:
|
|
image: "${PATCHSET_TAG}"
|
|
volumes:
|
|
- ".git:/usr/src/app/.git"
|
|
environment:
|
|
DATABASE_URL: postgres://postgres:${POSTGRES_PASSWORD}@postgres:5432/${DATABASE_NAME}?encoding=utf8&timeout=5000&shard_name=public&schema_search_path=''&use_qualified_names=true&shard1=${DATABASE_NAME}_shard_1&shard2=${DATABASE_NAME}_shard_2&test_shard_1=${DATABASE_NAME}_shard_1&test_shard_2=${DATABASE_NAME}_shard_2
|