From a4b2b787ea232d0fc9571a25a90734420abcdafe Mon Sep 17 00:00:00 2001 From: Gregor Vostrak Date: Mon, 9 Feb 2026 13:11:13 +0100 Subject: [PATCH] clarify docker logs instructions, fixes #36 --- docs/self-hosting/guides/docker.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/self-hosting/guides/docker.md b/docs/self-hosting/guides/docker.md index 04880fd..89ae695 100644 --- a/docs/self-hosting/guides/docker.md +++ b/docs/self-hosting/guides/docker.md @@ -83,12 +83,6 @@ After you have set up the environment files and generated the application keys, docker compose up -d ``` -You can view the logs of the containers with the following command: - -```bash -docker compose logs -f -``` - ### 5. Migrate database To create the database tables, you need to run the migrations. You can do this by running the following command: @@ -113,6 +107,12 @@ To do this you can set the environment variable `AUTO_DB_MIGRATE` to `true` in t You can now access the application in your browser. The URL depends on your setup. +To view the logs of the containers, you can use the following command: + +```bash +docker compose logs -f +``` + ### 7. Create a user Depending on your configuration of the `APP_ENABLE_REGISTRATION` environment variable, you can either create a user via the registration form or you need to create a user via the CLI.