From b2c71b918da74cef71cf33a2b8a70da301cc04cb Mon Sep 17 00:00:00 2001 From: Dustin Speckhals Date: Fri, 12 Apr 2024 08:43:15 -0400 Subject: [PATCH] Document submodule pull (#79) --- README.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8e7abf0..02aaa23 100644 --- a/README.md +++ b/README.md @@ -55,8 +55,14 @@ cookies or third-party analytic services involved in Bible.rs. [Github](https://github.com/DSpeckhals/bible.rs) and create a pull request. ## Docker -- To run the Docker container for Bible.rs +1. Pull the Git repository, including submodules + + `git pull https://github.com/DSpeckhals/bible.rs.git` + +If you've already pulled the repo but not the migrations submodule, run `git submodule update --init --recursive` + +2. To run the Docker container for Bible.rs `docker build -t biblers . && docker run -p 8080:8080 --rm -it biblers` -- Navigate to `localhost:8080` +3. Navigate to `localhost:8080`