-
Notifications
You must be signed in to change notification settings - Fork 94
/
docker-compose.yml
44 lines (44 loc) · 1.02 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
# Docker compose setup for testing with multiple databases
version: '3.8'
services:
couchdb:
image: couchdb
ports:
- "5984:5984"
environment:
COUCHDB_USER: ueberdb
COUCHDB_PASSWORD: ueberdb
elasticsearch:
image: elasticsearch:7.17.3
ports:
- 9200:9200
environment:
discovery.type: single-node
mongo:
image: mongo
ports:
- 27017:27017
environment:
MONGO_INITDB_DATABASE: mydb_test
mysql:
image: mariadb
ports:
- 3306:3306
environment:
MYSQL_ROOT_PASSWORD: password
MYSQL_USER: ueberdb
MYSQL_PASSWORD: ueberdb
MYSQL_DATABASE: ueberdb
postgres:
image: postgres:14-alpine
ports:
- 5432:5432
environment:
POSTGRES_USER: ueberdb
POSTGRES_PASSWORD: ueberdb
POSTGRES_DB: ueberdb
POSTGRES_HOST_AUTH_METHOD: "trust"
redis:
image: redis
ports:
- "6379:6379"