Guest User

Untitled

a guest
Nov 4th, 2018
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. # Dockerfile
  2.  
  3. FROM prismagraphql/prisma:1.19
  4. ARG PRISMA_CONFIG_PATH
  5. ENV PRISMA_CONFIG_PATH prisma/prisma.production.yml
  6. COPY config.yml prisma/prisma.production.yml
  7. EXPOSE 4466
  8.  
  9. # config.yml
  10.  
  11. port: 4466
  12. databases:
  13. default:
  14. connector: postgres
  15. host: dokku-postgres-follow-api-database
  16. port: 5432
  17. user: postgres
  18. password: ${env:DATABASE_PASSWORD}
  19. migrations: true
Add Comment
Please, Sign In to add comment