tylim
11/24/2018, 12:34 PMHarshit
11/24/2018, 5:18 PMHarshit
11/24/2018, 5:19 PMversion: '3'
services:
prisma:
image: prismagraphql/prisma:1.17
restart: always
ports:
- '4466:4466'
environment:
PRISMA_CONFIG: |
port: 4466
# uncomment the next line and provide the env var PRISMA_MANAGEMENT_API_SECRET=my-secret to activate cluster security
# managementApiSecret: my-secret
databases:
default:
connector: postgres
host: postgres
port: 5432
user: prisma
password: prisma
migrations: true
rawAccess: true
postgres:
image: postgres
restart: always
environment:
POSTGRES_USER: prisma
POSTGRES_PASSWORD: prisma
volumes:
- postgres:/var/lib/postgresql/data
volumes:
? postgresHarshit
11/25/2018, 2:18 AMtylim
11/25/2018, 4:12 PM