DEV Community

Cover image for Deploy Strapi on AWS/GCP/Digital Ocean using Porter
Trevor Shim for Porter

Posted on • Originally published at blog.porter.run

Deploy Strapi on AWS/GCP/Digital Ocean using Porter

Intro

Porter is a Platform as a Service (PaaS) that runs in your own cloud provider. It brings the convenience of platforms like Heroku, Netlify, and Vercel into a cloud provider of your choice. Under the hood, Porter runs on top of a Kubernetes cluster but abstracts away its complexity to the extent that you don't even have to know that it's running on Kubernetes.

image

This is a quick guide on how to deploy Strapi to a Kubernetes cluster in AWS/GCP/DO using Porter. This guide uses PostgresDB by default - to customize your database settings, modify the files in /app/config/env/production in the example repository.

Quick Deploy

  1. Create an account on Porter.
  2. One-click provision a Kubernetes cluster in a cloud provider of your choice, or connect an existing cluster if you have one already.
  3. Fork this repository.
  4. From the Launch tab, navigate to Web Service > Deploy from Git Repository. Then select the forked repository and Dockerfile in the root directory.
  5. Configure the port to 1337 and set environment variable to NODE_ENV=production. Depending on your database settings, you might want to add more environment variables. More on this in the section below.
  6. Set the assigned resources to Strapi's recommended settings (i.e. 2048Mi RAM, 1000 CPU), then hit deploy!

Screen Shot 2021-08-06 at 11.25.41 AM

Deploying PostgresDB

  1. Strapi instance deployed through Porter connects to a PostgresDB by default. You can connect Strapi instance deployed on Porter to any external database, but it is also possible to connect to a database that is deployed on Porter. Follow this guide to deploy a PostgresDB instance to your cluster in one click.
  2. After the database has been deployed, navigate to the Environment Variables tab of your deployed Strapi instance. Configure the following environment variables:
NODE_ENV=production
DATABASE_HOST=
DATABASE_PORT=5432
DATABASE_NAME=
DATABASE_USERNAME=
DATABASE_PASSWORD=
Enter fullscreen mode Exit fullscreen mode

To determine what the correct environment variables are in order to connect to the deployed database, see this guide.

Development

To develop, clone the example repository to your local environment and run npm install && npm run develop; from the app directory. Porter will automatically handle CI/CD and propagate your changes to production on every push to the repository.

Questions?

Join the Porter Discord community if you have any questions or need help.

Top comments (0)