Improve documentation

This commit is contained in:
brufdev
2025-06-17 15:06:57 +01:00
parent 4540fb1ce0
commit 0ac229dcfe
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -77,7 +77,7 @@ volumes:
typesense:
```
Feel free to change anything else if you know what you're doing, and read the customization section below before continue. Then run:
Make sure to change the address used to access the application. Feel free to change anything else if you know what you're doing, and read the customization section below before continue. Then run:
```shell
docker compose up -d
+3 -3
View File
@@ -36,8 +36,8 @@ services:
build:
context: .
args:
UID: USER_ID # change id
GID: GROUP_ID # change id
UID: 1000 # host user id
GID: 1000 # host group id
restart: unless-stopped
environment:
- APP_URL=http://localhost # address used to access the application
@@ -50,7 +50,7 @@ services:
- 80:8080
```
Make sure to update the IDs to match the host user IDs. Feel free to change anything else if you know what you're doing, and read the [customization section](../../README.md#customization) before continuing. Then run:
Make sure to update the IDs to match the host user IDs and the address used to access the application. Feel free to change anything else if you know what you're doing, and read the [customization section](../../README.md#customization) before continuing. Then run:
```shell
docker compose up -d