-
Notifications
You must be signed in to change notification settings - Fork 49
/
docker-compose.yml
54 lines (46 loc) · 961 Bytes
/
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
version: "3"
services:
etcd:
image: bitnami/etcd
environment:
ALLOW_NONE_AUTHENTICATION: "yes"
ports:
- "2379:2379"
redis:
image: bitnami/redis
environment:
ALLOW_EMPTY_PASSWORD: "yes"
ports:
- "6379:6379"
redis-cluster:
image: grokzen/redis-cluster:7.0.10
environment:
IP: "0.0.0.0"
INITIAL_PORT: 11000
ports:
- "11000-11005:11000-11005"
memcached:
image: bitnami/memcached
ports:
- "11211:11211"
consul:
image: bitnami/consul
ports:
- "8500:8500"
zookeeper:
image: bitnami/zookeeper
environment:
ALLOW_ANONYMOUS_LOGIN: "yes"
ports:
- "2181:2181"
dynamodb-local:
image: "amazon/dynamodb-local:latest"
command: "-jar DynamoDBLocal.jar -inMemory"
ports:
- "8000:8000"
postgresql:
image: bitnami/postgresql
environment:
ALLOW_EMPTY_PASSWORD: yes
ports:
- "5432:5432"