-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
38 lines (38 loc) · 1.07 KB
/
docker-compose.yml
File metadata and controls
38 lines (38 loc) · 1.07 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
version: "3"
services:
persistence:
image: testeditor/persistence:latest
ports:
- "9080:8080"
environment:
GIT_PRIVATE_KEY: "${GIT_PRIVATE_KEY}"
KNOWN_HOSTS_CONTENT: "${KNOWN_HOSTS_CONTENT}"
TARGET_REPO: "git@github.com:test-editor/language-examples.git"
BRANCH_NAME: "feature/gonk"
REPO_MODE: "pullPush"
testexecution:
image: testeditor/testexecution:latest
ports:
- "10080:8080"
environment:
GIT_PRIVATE_KEY: "${GIT_PRIVATE_KEY}"
KNOWN_HOSTS_CONTENT: "${KNOWN_HOSTS_CONTENT}"
TARGET_REPO: "git@github.com:test-editor/language-examples.git"
BRANCH_NAME: "feature/gonk"
xtext:
image: testeditor/xtext:latest
ports:
- "8080:8080"
environment:
GIT_PRIVATE_KEY: "${GIT_PRIVATE_KEY}"
KNOWN_HOSTS_CONTENT: "${KNOWN_HOSTS_CONTENT}"
TARGET_REPO: "git@github.com:test-editor/language-examples.git"
BRANCH_NAME: "feature/gonk"
web:
image: testeditor/web:latest
ports:
- "4200:4200"
depends_on:
- persistence
- testexecution
- xtext