From 2a7b0dd4ccaea8ee3894dc607ed8f0c200622640 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A6var=20=C3=96fj=C3=B6r=C3=B0=20Magn=C3=BAsson?= Date: Tue, 18 Jan 2022 15:12:14 +0000 Subject: [PATCH] Update README.md --- README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/README.md b/README.md index 69a2d17..9974f1d 100644 --- a/README.md +++ b/README.md @@ -42,6 +42,21 @@ Once the build is complete: ```sh # 6. Start your containers and wait for them to finish their startup scripts. docker-compose up +``` +You might see a message like this the first time you run your containers. This is normal because the frontend container has not finished building the assets for the Wagtail admin. Just wait a few seconds for the frontend container to finish building and then stop and start your containers again (Ctrl+C + `docker-compose up`). +``` +WARNINGS: +?: (wagtailadmin.W001) CSS for the Wagtail admin is missing + HINT: + Most likely you are running a development (non-packaged) copy of + Wagtail and have not built the static assets - + see https://docs.wagtail.org/en/latest/contributing/developing.html + + File not found: /code/wagtail/wagtail/admin/static/wagtailadmin/css/normalize.css``` + +``` + +```sh # 7. Now in a new shell, run the databse setup script. The database will be persisted across container executions by Docker's Volumes system so you will only need to run this commmand the first time you start the database. ./setup-db.sh # Success!