Rodrigo
05/30/2020, 4:59 PMpublic
. This is how my docker-compose file looks like:
version: '3'
services:
prisma:
image: prismagraphql/prisma:1.34
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: <http://ec2-3-222-30-53.compute-1.amazonaws.com|ec2-3-222-30-53.compute-1.amazonaws.com>
database: ....
schema: public
user: ....
password: .....
ssl: true
rawAccess: true
port: '5432'
migrations: true
Ryan
06/01/2020, 9:33 AMschema
param in prisma.yml
and see if that reflects to the new schema?