forked from dbt-labs/dbt-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
32 lines (27 loc) · 795 Bytes
/
docker-compose.yml
File metadata and controls
32 lines (27 loc) · 795 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
version: "3.7"
services:
dbt:
image: circleci/python:3.6.3-stretch
depends_on:
- ${TARGET}
env_file: "./integration_tests/.env/${TARGET}.env"
entrypoint: "/repo/run_test.sh ${TARGET} ${MODELS} ${SEEDS}"
working_dir: /repo
volumes:
- ".:/repo"
postgres:
image: circleci/postgres:9.6.5-alpine-ram
ports:
- "5432:5432"
# dummy container, since snowflake is a managed service
snowflake:
image: circleci/python:3.6.3-stretch
entrypoint: "/bin/true"
# dummy container, since bigquery is a managed service
bigquery:
image: circleci/python:3.6.3-stretch
entrypoint: "/bin/true"
# dummy container, since redshift is a managed service
redshift:
image: circleci/python:3.6.3-stretch
entrypoint: "/bin/true"