-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathdocker-compose.yml
63 lines (58 loc) · 1.16 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
59
60
61
62
63
services:
nginx:
image: nginx:1.21.6
container_name: nginx
hostname: nginx
ports:
- 80:80
restart: unless-stopped
volumes:
- ./nginx/default.conf:/etc/nginx/conf.d/default.conf:ro
networks:
- network
frontend:
image: frontend:1.0.0
build:
context: frontend
dockerfile: ./Dockerfile
container_name: frontend
hostname: frontend
restart: unless-stopped
ports:
- 3000:3000
networks:
- network
backend:
image: backend:1.0.0
build:
context: backend
dockerfile: ./Dockerfile
container_name: backend
hostname: backend
restart: unless-stopped
environment:
- ASPNETCORE_ENVIRONMENT=Production
ports:
- 3001:3001
networks:
- network
database:
image: mongo:8.0
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: pZ5FbOZ50GkZ
ports:
- 27017:27017
container_name: database
hostname: database
restart: unless-stopped
volumes:
- mongodb:/data/db
networks:
- network
volumes:
mongodb:
driver: local
networks:
network:
driver: bridge