-
Notifications
You must be signed in to change notification settings - Fork 5
/
docker-compose.yml
62 lines (55 loc) · 1.2 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
54
55
56
57
58
59
60
61
62
version: '2'
services:
jod:
image: guilhermeadc/sei3_jod-2.2.2
container_name: jod
ports:
- "8080:8080"
smtp:
image: guilhermeadc/sei3_mailcatcher
container_name: smtp
ports:
- "1080:1080"
memcached:
image: guilhermeadc/sei3_memcached
container_name: memcached
ports:
- "11211:11211"
mysql:
image: guilhermeadc/sei3_mysql-5.6
container_name: mysql
ports:
- "3306:3306"
oracle:
image: guilhermeadc/sei3_oracle-11g
container_name: oracle
ports:
- "1521:1521"
sqlserver:
image: guilhermeadc/sei3_sqlserver-2017
container_name: sqlserver
ports:
- "1433:1433"
solr:
image: guilhermeadc/sei3_solr-6.1
container_name: solr
ports:
- "8983:8983"
http:
image: guilhermeadc/sei3_httpd-2.4
container_name: httpd
dns: "8.8.8.8"
ports:
- "80:80"
volumes:
- ../../../..:/opt
environment:
- SEI_HOST_URL=http://localhost
links:
# - mysql:mysql
- oracle:oracle
# - sqlserver:sqlserver
- memcached:memcached
- solr:solr
- smtp:smtp
- jod:jod