-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
45 lines (39 loc) · 852 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
45 lines (39 loc) · 852 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
services:
server:
build:
context: ./back
dockerfile: Dockerfile
container_name: backend
ports:
- "5000:5000"
env_file: ./.env
environment:
- DB_HOST=mongodb
- DB_USER=$MONGODB_USER
- DB_PASSWORD=$MONGODB_PASSWORD
- DB_NAME=$MONGODB_DATABASE
- DB_PORT=$MONGODB_DOCKER_PORT
depends_on:
- mongodb
client:
build:
context: ./front
dockerfile: Dockerfile
container_name: frontend
ports:
- "80:80"
depends_on:
- server
mongodb:
image: mongo:latest
container_name: mongodb_server
env_file: ./.env
environment:
- MONGO_INITDB_ROOT_USERNAME=$MONGODB_USER
- MONGO_INITDB_ROOT_PASSWORD=$MONGODB_PASSWORD
ports:
- "27017:27017"
volumes:
- ./../mydata:/data/db
volumes:
mydata: