-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
52 lines (45 loc) · 957 Bytes
/
docker-compose.yml
File metadata and controls
52 lines (45 loc) · 957 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
version: '3.8'
# Services
services:
# Server service
server:
build:
context: ./server
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 service
client:
build:
context: ./client
dockerfile: Dockerfile
container_name: frontend
ports:
- "80:80"
depends_on:
- server
# Database service
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 define
volumes:
mydata: