From 41b76967f5c7471ba9a794ab05332fafaebca1be Mon Sep 17 00:00:00 2001 From: Chris Troutner Date: Sat, 28 Oct 2023 11:27:06 -0700 Subject: [PATCH] Adding production section back to README --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index 09b215f..751bf2e 100644 --- a/README.md +++ b/README.md @@ -46,6 +46,18 @@ This web server spins up an embedded IPFS ([Helia](https://github.com/ipfs/helia ## Installation +### Production Environment + +The [docker](./production/docker) directory contains a Dockerfile for building a production deployment. + +``` +docker-compose pull +docker-compose up -d +``` + +- You can bring the containers down with `docker-compose down` +- You can bring the containers back up with `docker-compose up -d`. + ### Development Environment A development environment will allow you modify the code on-the-fly and contribute to the code base of this repository. Ubuntu v20 is the recommended OS for creating a dev environment. Other operating systems may cause issues.