-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yaml
52 lines (47 loc) · 935 Bytes
/
docker-compose.yaml
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'
services:
nginx:
build:
context: nginx
container_name: nginx
image: brunnoprego/fcd-nnm-nginx
networks:
- nnm-net
volumes:
- ./html:/usr/src/app
tty: true
ports:
- "8080:80"
depends_on:
- db
- app
app:
build:
context: node
container_name: app
image: brunnoprego/fcd-nnm-app
networks:
- nnm-net
tty: true
ports:
- "3000:3000"
depends_on:
- db
db:
image: mysql:5.7
container_name: db
restart: always
tty: true
command: --innodb-use-native-aio=0 --init-file /data/application/init.sql
volumes:
- ./db/init.sql:/data/application/init.sql
- ./db/mysql:/var/lib/mysql
environment:
- MYSQL_DATABASE=nnmdb
- MYSQL_ROOT_PASSWORD=root
- MYSQL_ROOT_HOST='%'
networks:
- nnm-net
networks:
nnm-net:
driver: bridge