forked from motech/motech-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dev.yml
39 lines (39 loc) · 843 Bytes
/
dev.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
activemq:
image: motech/activemq:5.5.1
ports:
- 61616:61616
- 8161:8161
couchdb:
image: motech/couchdb:1.5.0
ports:
- 5984:5984
- 5985:5985
db:
image: motech/mysql
ports:
- 3306:3306
# volumes:
# - /mysql:/var/lib/mysql
environment:
MYSQL_ROOT_PASSWORD: password
MYSQL_USER: quartz
MYSQL_PASSWORD: quartz2123
MYSQL_DATABASE: motechquartz
tomcat:
image: motech/tomcat:7.0.53
ports:
- "8080:8080"
- "8000:8000"
links:
- couchdb
- db
- activemq
environment:
JAVA_OPTS: -Xms1024m -Xmx2048m -XX:MaxPermSize=1024m
DB_TYPE: mysql
DB_USER: root
DB_PASSWORD: password
DB_DRIVER: com.mysql.jdbc.Driver
volumes:
- /home/HOST_USERNAME/docker-motech-config:/root/.motech/config
- /home/HOST_USERNAME/docker-motech-bundles:/root/.motech/bundles