-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
43 lines (43 loc) · 936 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
version: '3'
services:
prisma:
image: prismagraphql/prisma:1.34
restart: always
ports:
- '4488:4488'
environment:
PRISMA_CONFIG: |
port: 4488
databases:
default:
connector: postgres
host: postgres
port: 5432
user: prisma
password: prisma
prisma_test:
image: prismagraphql/prisma:1.34
restart: always
ports:
- '4499:4499'
environment:
PRISMA_CONFIG: |
port: 4499
databases:
default:
connector: postgres
host: postgres
port: 5432
database: prisma_test
user: prisma
password: prisma
postgres:
image: postgres:10.3
restart: always
environment:
POSTGRES_USER: prisma
POSTGRES_PASSWORD: prisma
volumes:
- postgres:/var/lib/postgresql/data
volumes:
postgres: ~