-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
58 lines (55 loc) · 1.06 KB
/
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
53
54
55
56
57
58
version: '3.8'
services:
# nest application service
app:
container_name: agent-sales-api
build:
context: .
dockerfile: Dockerfile
ports:
- 3000:3000
networks:
# - agent-sales-api
- api
# - agent-sale-api-network
env_file:
- .env
environment:
- MONGO_URI=mongodb://mongo:27018/incourage
volumes:
- .:/usr/src/app
- /usr/src/app/node_modules
depends_on:
- database
restart: unless-stopped
tty: true
# start the mongodb service as container
database:
image: mongo:latest
container_name: mongodb
restart: always
ports:
- '27018:27017'
# environment:
# - MONGO_URI=mongodb://mongo:27017/incourage
volumes:
- mongo-data:/data/db
# MONGO_USER: admin
# MONGO_PASSWORD: 123
# MONGO_DB: incourage
env_file:
- .env
networks:
- api
# use redis
# redis:
# image: redis:7-alpine
# ports:
# - 6379:6379
#Docker Networks
networks:
api:
driver: bridge
#Volumes
volumes:
mongo-data: