From 0d5189e226e4037450b912c5922d7c60b8207c97 Mon Sep 17 00:00:00 2001 From: Felipe Monteiro Date: Tue, 23 Oct 2018 22:09:22 -0400 Subject: [PATCH] trivial: Add missing alembic upgrade head to manual install This patch set adds `./entrypoint.sh alembic upgrade head` command to manual install section in Getting Started guide, without which Deckhand server cannot start correctly. Change-Id: Id486cc98b8fd93271a8571364adfb9fb30bf4bcc --- doc/source/users/getting-started.rst | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/doc/source/users/getting-started.rst b/doc/source/users/getting-started.rst index e3c83d03..3f182ae7 100644 --- a/doc/source/users/getting-started.rst +++ b/doc/source/users/getting-started.rst @@ -174,7 +174,9 @@ Substitute the connection information into the config file in Finally, run Deckhand:: - $ chmod +x entrypoint.sh + # Perform DB migrations + $ ./entrypoint.sh alembic upgrade head + # Instantiate the Deckhand server $ ./entrypoint.sh server To kill the ephemeral DB afterward::