-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
75 lines (75 loc) · 1.8 KB
/
docker-compose.yml
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
version: "3.3"
services:
metabase:
container_name: metabase
restart: always
build: ./metabase
ports:
- 3000:3000
environment:
- MB_DB_FILE=/metabase-data/metabase.db
volumes:
- ./.metabase:/metabase-data
# dashboard:
# image: grafana/grafana-oss
# ports:
# - 3000:3000
# volumes:
# - grafana_data:/var/lib/grafana
# container_name: grafana
postgres:
container_name: cq-demo-postgres-1
restart: always
image: postgres
environment:
- POSTGRES_PASSWORD=password123
- POSTGRES_USER=cq
- POSTGRES_DB=cq
volumes:
- ./.db:/var/lib/postgresql/data:rw
ports:
- 5432:5432
cq-cron:
container_name: cq-cron
restart: always
build: cloudquery
volumes:
- ./daily.yml:/app/daily.yml:ro
- ./bitly.yml:/app/bitly.yml:ro
environment:
- PG_CONNECTION_STRING="postgresql://cq:password123@cq-demo-postgres-1:5432/cq?sslmode=disable"
env_file:
- .env
typeform-plugin:
container_name: typeform-plugin
restart: always
build: github-cloudquery/plugins/source/typeform
environment:
- TYPEFORM_TOKEN=${TYPEFORM_TOKEN}
env_file:
- .env
# ports:
# - 7777:7777 # expose for local testing
bitly-plugin:
container_name: bitly-plugin
restart: always
build: cq-source-bitly
environment:
- BITLY_API_TOKEN=${BITLY_API_TOKEN}
- BITLY_GROUP_ID=${BITLY_GROUP_ID}
env_file:
- .env
# ports:
# - 7778:7778 # expose for local testing
cloudquery-plugin:
container_name: cloudquery-plugin
restart: always
build: cq-source-cloudquery
# speedtest-plugin:
# container_name: speedtest-plugin
# restart: always
# build: cq-speed-test
# env_file:
# - .env
#volumes:
#grafana_data: {}