-
-
Notifications
You must be signed in to change notification settings - Fork 380
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
33 lines (33 loc) · 643 Bytes
/
docker-compose.yml
File metadata and controls
33 lines (33 loc) · 643 Bytes
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
version: '3'
services:
prisma-postgres:
image: postgres
ports:
- '5433:5432'
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
- POSTGRES_DB=prisma
typeorm-postgres:
image: postgres
ports:
- '5432:5432'
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
- POSTGRES_DB=typeorm
redis:
image: redis
ports:
- '6379:6379'
mongodb:
image: mongo
ports:
- '27017:27017'
mysql:
image: mysql:5.7.31
environment:
MYSQL_ROOT_PASSWORD: root
MYSQL_DATABASE: test
ports:
- '3306:3306'