-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yaml
60 lines (58 loc) · 1.33 KB
/
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
53
54
55
56
57
58
59
60
version: "3"
services:
nm_app:
container_name: nm_app
build:
context: ./node
networks:
network_monitor:
ipv4_address: ${SERVER_IP}
volumes:
- server:/usr/src/app/server
- webapp:/usr/src/app/webapp
ports:
- ${SERVER_PORT}:9500
tty: true
stdin_open: true
nm_db:
container_name: nm_db
build:
context: ./mysql
command: --default-authentication-plugin=mysql_native_password
networks:
network_monitor:
ipv4_address: ${DB_IP}
volumes:
- db:/var/lib/mysql
ports:
- ${DB_PORT}:3306
env_file:
- .env
tty: true
stdin_open: true
networks:
network_monitor:
driver: bridge
ipam:
driver: default
config:
- subnet: ${NETWORK_SUBNET}
volumes:
server:
driver: local
driver_opts:
o: bind
type: none
device: ${SERVER_APP}
webapp:
driver: local
driver_opts:
o: bind
type: none
device: ${WEB_APP}
db:
driver: local
driver_opts:
o: bind
type: none
device: ${DB_APP}