-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
51 lines (45 loc) · 1.08 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
services:
msnoise:
image: msnoise:latest
container_name: msnoise
hostname: msnoise
# build:
#context: .
#dockerfile: ./dockerfile/Dockerfile
ports:
- '6901:6901'
- '5000:5000'
- '1001:22'
networks:
msnoise-network:
ipv4_address: 172.21.0.2
volumes:
- type: bind
source: /your-sds-archive
target: /sds-archive
read_only: true
- type: bind
source: ./msnoise-outcome-files
target: /msnoise-outcome-files
- type: bind
source: ./inventories-for-station-not-on-fdsn
target: /inventories-for-station-not-on-fdsn
- type: volume
source: msnoise_mysql_data
target: /var/lib/mysql
- type: volume
source: msnoise_project_root
target: /home/msnoise
#---------------------------
volumes:
msnoise_mysql_data:
name: msnoise_mysql_data
msnoise_project_root:
name: msnoise_project_root
#---------------------------
networks:
msnoise-network:
name: msnoise-network
ipam:
config:
- subnet: 172.21.0.0/16