forked from ninjasphere/sphere-stack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
resources-docker-compose.yml
55 lines (51 loc) · 1018 Bytes
/
resources-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
# sphere-stack resources
#
# This is all the microservices which combine to make the sphere cloud resource services.
#
# NOTE: You will want to reconfigure all the passwords in here and the test_sql.sql file.
#
# douitsu, activation databases
spheremysql:
privileged: true
image: tutum/mysql
ports:
- "3306:3306"
volumes:
- /data/mysql:/var/lib/mysql
environment:
- MYSQL_USER="ninja"
- MYSQL_PASS="ninja"
expose:
- "3306"
# document store
spherecouch:
image: klaemo/couchdb
ports:
- "5984:5984"
volumes:
- /data/couchdb:/usr/local/var/lib/couchdb
expose:
- "5984"
# message broker
sphererabbit:
hostname: sphererabbit
image: ninjablocks/rabbitmq
environment:
- RABBITMQ_PASS=ofjoHyibkaibHiammagsenun
volumes:
- /data/rabbitmq:/var/lib/rabbitmq
ports:
- "1883:1883"
- "5672:5672"
- "15672:15672"
expose:
- "1883"
- "5672"
- "15672"
# cache
sphereredis:
image: redis
ports:
- "6379:6379"
expose:
- "6379"