Skip to content

Commit

Permalink
Update README.md (bitswired#38)
Browse files Browse the repository at this point in the history
Here are the changes I made to the dockerfile, (tested on multiuser only)
  • Loading branch information
barnito authored Apr 1, 2023
1 parent 422e764 commit 9fa7d63
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,38 @@ docker run \
bitswired/ai-chat-app:multi-user-latest
```

### 🧑🏽‍💻🧑🏽‍💻 Multi User Mode UNRAID ONLY (Modified by barnito)
(It's an example, replace values with what makes sense in your current setup)
```
docker run
-d
--name='ai-chat-app'
--net='bridge'
-e TZ="America/New_York"
-e HOST_OS="Unraid"
-e HOST_HOSTNAME="UnraidServer"
-e HOST_CONTAINERNAME="ai-chat-app"
-e 'NEXTAUTH_SECRET'='XXXX'
-e 'NEXTAUTH_URL'='XXXX'
-e 'ADMIN_EMAIL'='XXXX'
-e 'ADMIN_PASSWORD'='XXXX'
-e 'EMAIL_SERVER_HOST'='smtp.gmail.com'
-e 'EMAIL_SERVER_PORT'='465'
-e 'EMAIL_SERVER_USER'='[email protected]'
-e 'EMAIL_SERVER_PASSWORD'='XXXX'
-e 'EMAIL_FROM'='[email protected]'
-e 'NEXT_PUBLIC_MULTI_USER'='1'
-e 'DATABASE_URL'='file:/config/db.sqlite'
-e 'PUID'='99'
-e 'PGID'='100'
-e 'UMASK'='022'
-l net.unraid.docker.managed=dockerman
-l net.unraid.docker.webui='http://[IP]:[PORT:3000]'
-l net.unraid.docker.icon='https://github.com/bitswired/fuseai/raw/main/public/logo.png'
-p '3000:3000/tcp'
-v '/mnt/user/appdata/ai-chat-app':'/config':'rw' 'bitswired/ai-chat-app:multi-user-latest'
```

## 🚀 Roadmap

> Contribution welcomed!
Expand Down

0 comments on commit 9fa7d63

Please sign in to comment.