-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrender.yaml
More file actions
37 lines (35 loc) · 779 Bytes
/
Copy pathrender.yaml
File metadata and controls
37 lines (35 loc) · 779 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
services:
- type: web
name: python-backend
runtime: docker
dockerfilePath: ./backend/python/Dockerfile
plan: free
envVars:
- key: PORT
value: 8000
- type: web
name: go-price-service
runtime: docker
dockerfilePath: ./backend/go/Dockerfile
plan: starter
envVars:
- key: PORT
value: 9000
- type: web
name: frontend
runtime: docker
dockerfilePath: ./frontend/Dockerfile
plan: starter
envVars:
- key: PORT
value: 8080
- key: PYTHON_BACKEND_URL
fromService:
type: web
name: python-backend
property: host
- key: GO_SERVICE_URL
fromService:
type: web
name: go-price-service
property: host