prisma: image: prismagraphql/prisma:1.14 r...
# orm-help
m
prisma: image: prismagraphql/prisma:1.14 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
s
Yes you can in docker-compose.yml default: connector: postgres host: dbserver port: 5432 database: MyDatabase user: prisma password: prisma migrations: true rawAccess: true