-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
50 lines (47 loc) · 1.26 KB
/
docker-compose.yml
File metadata and controls
50 lines (47 loc) · 1.26 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
version: '2'
services:
# SkillDirectory
backend:
image: maryville/skilldirectory:master
restart: always
container_name: skilldirectory_container
volumes:
- ${HOME}/skilldirectory/dev:/root/skilldirectory/dev:rw
environment:
POSTGRES_URL: "${POSTGRES_URL}"
POSTGRES_PORT: 5432
POSTGRES_KEYSPACE: "${POSTGRES_KEYSPACE}"
POSTGRES_USERNAME: "${POSTGRES_USERNAME}"
POSTGRES_PASSWORD: "${POSTGRES_PASSWORD}"
GITHUB_CLIENT_ID: "${GITHUB_CLIENT_ID}"
GITHUB_CLIENT_SECRET: "${GITHUB_CLIENT_SECRET}"
SSL: "${SSL}"
FILE_SYSTEM: "${FILE_SYSTEM}"
expose:
- "8080"
- "2121"
ports:
- "8080:8080"
- "2121:2121"
# SkillDirectory Tester
backend-tester:
image: maryville/skilldirectory-tester:master
container_name: skilldirectory_tester
environment:
API: "http://backend:8080/api"
SLACK_HOOK: "${SLACK_HOOK}"
SLACK_TOKEN: "${SLACK_TOKEN}"
# SkillDirectory UI
web:
image: maryville/skilldirectoryui:master
restart: always
container_name: skilldirectory_ui
expose:
- "9000"
ports:
- "8000:9000"
environment:
API: "${API}"
CLIENT: "${CLIENT}"
command:
"/bin/bash ./buildUI"