clarify docker logs instructions, fixes #36

This commit is contained in:
Gregor Vostrak
2026-02-09 13:11:13 +01:00
parent b067240673
commit a4b2b787ea
+6 -6
View File
@@ -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.