forked from devopsacademyau/academy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
40 lines (40 loc) · 846 Bytes
/
docker-compose.yml
File metadata and controls
40 lines (40 loc) · 846 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
33
34
35
36
37
38
39
40
version: '3.7'
services:
gitpitch:
image: knsit/gitpitch:latest
environment:
- "GP_GITHUB_AS_DEFAULT=true"
ports:
- 9000:9000
gh-terraform:
image: hashicorp/terraform:0.12.31
working_dir: /work
volumes:
- ${PWD}/scripts/tf/github.com:/work
- ${HOME}/.aws:/root/.aws
environment:
- TF_VAR_github_token
- AWS_ACCESS_KEY_ID
- AWS_SECRET_ACCESS_KEY
python-da:
build: ./scripts/dashboard
volumes:
- ${PWD}:/app
environment:
- GOOGLE_KEY
- SHEET_KEY
- GH_USER
- GH_TOKEN
aws-cli:
image: amazon/aws-cli
volumes:
- ${PWD}:/app
environment:
- SLACK_WEBHOOK
- SLACK_CHANNEL
- PUBLISH_URL
- AWS_ACCESS_KEY_ID
- AWS_SECRET_ACCESS_KEY
- AWS_DEFAULT_REGION
entrypoint:
- bash