-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
49 lines (45 loc) · 934 Bytes
/
docker-compose.yml
File metadata and controls
49 lines (45 loc) · 934 Bytes
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
version: '2'
services:
mysql:
tty: true
image: eosystems/mysql-eopes
volumes_from:
- storage-mysql
ports:
- "13406:3306"
container_name: mysql-eopes
build: build/mysql-eopes
environment:
MYSQL_ROOT_PASSWORD: password
storage-mysql:
tty: true
image: eosystems/storage-mysql-eopes
container_name: storage-mysql-eopes
nginx:
tty: true
image: eosystems/nginx-eopes
volumes_from:
- storage-eopes
container_name: nginx-eopes
build: build/nginx-eopes
ports:
- "10180:80"
links:
- eopes
eopes:
image: eosystems/eopes
volumes_from:
- storage-eopes
container_name: app-eopes
build:
context: build/eopes
args:
gitbranch: "master"
ports:
- "13100:3000"
links:
- mysql
storage-eopes:
tty: true
image: eosystems/storage-eopes
container_name: storage-eopes