forked from phalcon/incubator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
56 lines (50 loc) · 1.01 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
version: '2'
services:
redis:
restart: always
image: redis:3.2
container_name: incubator_redis
expose:
- "6379"
ports:
- "6379:6379"
mysql:
restart: always
image: mysql:5.7
container_name: incubator_mysql
expose:
- "3306"
ports:
- "3306:3306"
environment:
MYSQL_DATABASE: incubator_tests
MYSQL_ALLOW_EMPTY_PASSWORD: 'yes'
memcached:
restart: always
image: memcached:1.4
container_name: incubator_memcached
ports:
- "11211:11211"
queue:
restart: always
image: phalconphp/beanstalkd:1.10
container_name: incubator_beanstalkd
ports:
- "11302:11302"
aerospike:
restart: always
image: aerospike/aerospike-server
container_name: incubator_aerospike
ports:
- "3000:3000"
- "3001:3001"
- "3002:3002"
- "3003:3003"
mongodb:
restart: always
image: mongo:latest
container_name: incubator_mongo
expose:
- "27017"
ports:
- "27017:27017"