-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathdocker-compose.yml
52 lines (46 loc) · 939 Bytes
/
docker-compose.yml
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
version: '3.6'
services:
db:
restart: always
container_name: jee_database
build: ./postgres
env_file:
- postgres/database.env
volumes:
- type: volume
source: database
target: /var/lib/postgresql/data
read_only: false
networks:
- jee_network
backend:
restart: always
container_name: jee_backend
build: ./backend
command: gunicorn dashboard.wsgi --bind 0.0.0.0:8000
networks:
- jee_network
frontend:
container_name: jee_frontend
build: ./frontend
volumes:
- build_folder:/frontend/build
networks:
- jee_network
webserver:
container_name: jee_webserver
build: ./webserver
ports:
- '8081:3000'
volumes:
- build_folder:/var/www/frontend
depends_on:
- backend
- frontend
networks:
- jee_network
volumes:
database:
build_folder:
networks:
jee_network: