From 2dee00292cbdf35d52b43401cea738eaded29e36 Mon Sep 17 00:00:00 2001 From: blam Date: Tue, 26 Jan 2021 17:34:52 +0100 Subject: [PATCH] chore: review comments --- docs/getting-started/deployment-other.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/getting-started/deployment-other.md b/docs/getting-started/deployment-other.md index 6cc90c88fb..569ef6e898 100644 --- a/docs/getting-started/deployment-other.md +++ b/docs/getting-started/deployment-other.md @@ -13,6 +13,9 @@ in one container. This Dockerfile uses multi-stage builds, and a It also provides caching on the `yarn install`'s so that you don't have to do it unless absolutely necessary. +> Note: This Dockerfile assumes that you're running SQLite, or your +> configuration is setup to connect to an external PostgreSQL Database. + ```Dockerfile # Stage 1 - Create yarn install skeleton layer FROM node:14-buster AS packages @@ -66,6 +69,8 @@ $ docker build -t example-deployment . $ docker run -p 7000:7000 example-deployment ``` +Once complete, open your browser at `http://localhost:7000` if running locally. + ## Heroku Deploying to Heroku is relatively easy following these steps.