-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
50 lines (50 loc) · 967 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
version: '3'
services:
nodeBack:
image: node-back
container_name: nodeBack
ports:
- "3050:3000"
- "3051:3001"
- "9229:9229"
tty: true
volumes:
- ../ApiNodeBackend:/usr/src
links:
- db:database
db:
container_name: postgres
image: postgres
restart: "no"
environment:
POSTGRES_PASSWORD: example
adminer:
image: adminer
restart: "no"
ports:
- 8080:8080
reactFront:
image: react-front
container_name: reactFront
ports:
- "3020:3000"
- "9220:9229"
volumes:
- ../shared-server-ui:/usr/src
pythonServer:
image: python-server
container_name: pythonServer
command: sh docker-run.sh
restart: always
ports:
- "5000:5000"
volumes:
- ../applicationServer:/usr/src
links:
- mongodb:database
- redis
- nodeBack:sharedserver
mongodb:
image: mongo:latest
redis:
image: redis