formatting update

This commit is contained in:
2026-03-13 16:59:45 -04:00
parent 00f0cbfece
commit 28678dc5b0

View File

@@ -1,4 +1,8 @@
#### docker-compose.yaml
## docker-compose.yaml
added multiple variable options, that requires a .env file (envirnment variable)
```
services:
jama:
image: jama:${JAMA_VERSION:-latest}
@@ -32,8 +36,12 @@ volumes:
driver: local
${PROJECT_NAME:-jamachat}_uploads:
driver: local
```
## .env file
#### .env file
these are an example of a required .env. It can usually be imported in to docker managers.
```
# jama Configuration
# just another messaging app
@@ -76,4 +84,4 @@ PORT=3069
DEFCHAT_NAME=General Chat
APP_NAME=jama
PROJECT_NAME=myjamachat
PROJECT_NAME=myjamachat ```