w0wka91
07/26/2018, 3:42 AMw0wka91
07/26/2018, 4:04 AMIbesoft
07/26/2018, 3:59 PMw0wka91
07/30/2018, 2:06 AMFROM prismagraphql/prisma:1.13-beta
ARG PRISMA_CONFIG_PATH
ENV PRISMA_CONFIG_PATH prisma.yml
COPY config.yml prisma.yml
EXPOSE 4466
6. Create a config.yml file inside your project folder with the following content:
port: 4466
databases:
default:
connector: postgres
host: REPLACE_WITH_YOUR_HOST
port: 5432
user: postgres
password: REPLACE_WITH_YOUR_PASSWORD
migrations: true
active: true
7. Deploy the app (http://dokku.viewdocs.io/dokku/deployment/application-deployment/#deploy-the-app)w0wka91
07/30/2018, 2:13 AM