-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker-compose.yml
53 lines (49 loc) · 1.1 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
version: '2'
services:
mysql:
tty: true
image: eosystems/mysql-eobackbone
volumes_from:
- storage-mysql
ports:
- "13306:3306"
container_name: mysql-eobackbone
build: build/mysql-eobackbone
environment:
MYSQL_ROOT_PASSWORD: password
storage-mysql:
tty: true
image: eosystems/storage-mysql-eobackbone
#build: build/storage-mysql-eobackbone
container_name: storage-mysql-eobackbone
nginx:
tty: true
image: eosystems/nginx-eobackbone
volumes_from:
- storage-eobackbone
container_name: nginx-eobackbone
build: build/nginx-eobackbone
ports:
- "80:80"
links:
- eobackbone
eobackbone:
#tty: true
image: eosystems/eobackbone
volumes_from:
- storage-eobackbone
container_name: app-eobackbone
build:
context: ./
args:
gitbranch: ${gitbranch}
env_file: .env
ports:
- "13000:3000"
links:
- mysql
storage-eobackbone:
tty: true
image: eosystems/storage-eobackbone
build: build/storage-eobackbone
container_name: storage-eobackbone