-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
57 lines (51 loc) · 916 Bytes
/
docker-compose.yml
File metadata and controls
57 lines (51 loc) · 916 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
---
version: "3"
volumes:
data:
services:
fexapi:
build:
context: .
dockerfile: ./docker/api/Dockerfile
restart: always
depends_on:
- "db"
env_file:
- '.variables.env'
volumes:
- ./fexapi:/fexapi
ports:
- "8000:8000"
fexservice:
build:
context: .
dockerfile: ./docker/service/Dockerfile
restart: always
depends_on:
- "db"
env_file:
- '.variables.env'
volumes:
- ./fexservice:/fexservice
fexui:
build:
context: .
dockerfile: ./docker/ui/Dockerfile
restart: always
environment:
- PORT=5500
depends_on:
- "fexapi"
volumes:
- ./fexui:/fexui
ports:
- "5500:5500"
db:
image: postgres:12.1
restart: always
env_file:
- '.variables.env'
volumes:
- data:/var/lib/postgresql/data
ports:
- "5432:5432"