-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
66 lines (61 loc) · 1.63 KB
/
Copy pathdocker-compose.yml
File metadata and controls
66 lines (61 loc) · 1.63 KB
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
services:
sekiad:
build:
context: .
target: sekiad
volumes:
- sekia-nats:/var/lib/sekia/nats
- ./configs/workflows:/etc/sekia/workflows:ro
environment:
- SEKIA_NATS_HOST=0.0.0.0
- SEKIA_NATS_PORT=4222
- SEKIA_NATS_DATA_DIR=/var/lib/sekia/nats
- SEKIA_SERVER_SOCKET=/tmp/sekiad.sock
- SEKIA_WORKFLOWS_DIR=/etc/sekia/workflows
- SEKIA_WEB_LISTEN=0.0.0.0:8080
ports:
- "127.0.0.1:4222:4222"
- "127.0.0.1:8080:8080"
sekia-github:
build:
context: .
target: sekia-github
depends_on: [sekiad]
environment:
- SEKIA_NATS_URL=nats://sekiad:4222
- GITHUB_TOKEN=${GITHUB_TOKEN:-}
- GITHUB_WEBHOOK_SECRET=${GITHUB_WEBHOOK_SECRET:-}
ports:
- "127.0.0.1:8081:8080"
sekia-slack:
build:
context: .
target: sekia-slack
depends_on: [sekiad]
environment:
- SEKIA_NATS_URL=nats://sekiad:4222
- SLACK_BOT_TOKEN=${SLACK_BOT_TOKEN:-}
- SLACK_APP_TOKEN=${SLACK_APP_TOKEN:-}
sekia-linear:
build:
context: .
target: sekia-linear
depends_on: [sekiad]
environment:
- SEKIA_NATS_URL=nats://sekiad:4222
- LINEAR_API_KEY=${LINEAR_API_KEY:-}
sekia-google:
build:
context: .
target: sekia-google
depends_on: [sekiad]
volumes:
- google-token:/home/sekia/.config/sekia
environment:
- SEKIA_NATS_URL=nats://sekiad:4222
- GOOGLE_CLIENT_ID=${GOOGLE_CLIENT_ID:-}
- GOOGLE_CLIENT_SECRET=${GOOGLE_CLIENT_SECRET:-}
- GOOGLE_TOKEN_PATH=/home/sekia/.config/sekia/google-token.json
volumes:
sekia-nats:
google-token: