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.