From efd273bfa56e2633b5a5ec80d799778b7f158f42 Mon Sep 17 00:00:00 2001
From: Alex Richards <ajtrichards@gmail.com>
Date: Fri, 29 Apr 2022 20:20:42 +0100
Subject: [PATCH] Instructions for running via Docker

---
 README.md | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/README.md b/README.md
index 63e4392..46c2d3a 100644
--- a/README.md
+++ b/README.md
@@ -20,6 +20,17 @@ yarn start
 
 Go to https://localhost:5006 in your browser and you'll see Actual.
 
+## Running via Docker
+To run using a Docker container you can use following commands;
+
+```
+git clone https://github.com/actualbudget/actual-server.git
+cd actual-server
+docker build -t actual-server .
+docker run -p 5006:5006 actual-server
+```
+
+
 ## Deploying
 
 You should deploy your server so it's always running. We recommend [fly.io](https://fly.io) which makes it incredibly easy and provides a free plan.
-- 
GitLab