-
Notifications
You must be signed in to change notification settings - Fork 31
/
docker-compose.yml
64 lines (56 loc) · 1.48 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
version: '3.8'
services:
redis:
image: public.ecr.aws/docker/library/redis
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: public.ecr.aws/docker/library/cassandra
ports:
- 9042:9042
couchbase:
image: public.ecr.aws/docker/library/couchbase:community
ports:
- 8091-8094:8091-8094
- 11210:11210
mariadb:
image: public.ecr.aws/docker/library/mariadb
ports:
- 3306:3306
environment:
MYSQL_DATABASE: 'instana_test_db'
MYSQL_USER: 'root'
MYSQL_ROOT_PASSWORD: passw0rd
MYSQL_ROOT_HOST: '%'
volumes:
- ./tests/config/database/mysql/conf.d/mysql.cnf:/etc/mysql/conf.d/mysql.cnf:Z
mongodb:
image: public.ecr.aws/docker/library/mongo
ports:
- '27017:27017'
postgres:
image: public.ecr.aws/docker/library/postgres
ports:
- 5432:5432
environment:
POSTGRES_USER: root
POSTGRES_PASSWORD: passw0rd
POSTGRES_DB: instana_test_db
rabbitmq:
image: public.ecr.aws/docker/library/rabbitmq
environment:
- RABBITMQ_NODENAME=rabbit@localhost
ports:
- 5671:5671
- 5672:5672
pubsub:
image: quay.io/thekevjames/gcloud-pubsub-emulator:latest
environment:
- PUBSUB_EMULATOR_HOST=0.0.0.0:8681
- PUBSUB_PROJECT1=test-project,test-topic
ports:
- "8681:8681"
- "8682:8682"