forked from instana/python-sensor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
65 lines (57 loc) · 1.3 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
63
64
65
version: '3.8'
services:
redis:
image: redis:5.0.14
volumes:
- ./tests/conf/redis.conf:/usr/local/etc/redis/redis.conf:Z
command: redis-server /usr/local/etc/redis/redis.conf
ports:
- "0.0.0.0:6379:6379"
cassandra:
image: cassandra:3.11.5
ports:
- 9042:9042
couchbase:
image: couchbase
ports:
- 8091-8094:8091-8094
- 11210:11210
mariadb:
image: mariadb
ports:
- 3306:3306
environment:
MYSQL_DATABASE: 'circle_test'
MYSQL_USER: 'root'
MYSQL_PASSWORD: ''
MYSQL_ALLOW_EMPTY_PASSWORD: 'yes'
MYSQL_ROOT_PASSWORD: ''
MYSQL_ROOT_HOST: '%'
volumes:
- ./tests/config/database/mysql/conf.d/mysql.cnf:/etc/mysql/conf.d/mysql.cnf:Z
mongodb:
image: 'mongo:4.2.3'
ports:
- '27017:27017'
postgres:
image: postgres:10.5
ports:
- 5432:5432
environment:
POSTGRES_USER: root
POSTGRES_PASSWORD: ''
POSTGRES_DB: circle_test
rabbitmq:
image: rabbitmq:3.9.13-alpine
environment:
- RABBITMQ_NODENAME=rabbit@localhost
ports:
- 5671:5671
- 5672:5672
pubsub:
image: singularities/pubsub-emulator
environment:
- PUBSUB_PROJECT_ID=project-test
- PUBSUB_LISTEN_ADDRESS=0.0.0.0:8432
ports:
- "8432:8432"