-
Notifications
You must be signed in to change notification settings - Fork 6
/
docker-compose.yaml
70 lines (67 loc) · 1.38 KB
/
docker-compose.yaml
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
version: "2"
services:
postgres:
image: postgres:12
ports:
- 5432:5432
expose:
- 5432
environment:
POSTGRES_USER: opencoverage
POSTGRES_PASSWORD: secret
POSTGRES_INITDB_ARGS: --data-checksums
POSTGRES_DB: opencoverage
api:
# image: opencoverage/api:latest
build:
context: .
ports:
- 8000:8000
expose:
- 8000
environment:
PUBLIC_URL: https://open-coverage.org
DSN: postgresql://opencoverage:secret@postgres:5432/opencoverage?sslmode=disable
SCM: github
GITHUB_APP_PEM_FILE: /app/cov.pem
GITHUB_APP_ID: "96444"
GITHUB_DEFAULT_INSTALLATION_ID: "14109303"
ROOT_PATH: /api
CORS: '["http://localhost:8080"]'
volumes:
- ${PWD}/cov.pem:/app/cov.pem
depends_on:
- postgres
links:
- postgres
frontend:
# image: opencoverage/frontend:latest
build:
context: app
# dockerfile: app/Dockerfile
ports:
- 3000:3000
expose:
- 3000
environment:
NEXT_PUBLIC_API_URL: http://localhost:8080/api
depends_on:
- api
links:
- api
nginx:
image: nginx:1.19.6
volumes:
- ${PWD}/conf/nginx-templates:/etc/nginx/templates
ports:
- 8080:80
- 443:443
expose:
- 8080
- 443
depends_on:
- api
- frontend
links:
- api
- frontend