mirror of
https://github.com/EpicMorg/docker-scripts.git
synced 2024-12-28 15:45:44 +03:00
STAM
61938a770d
bump versions updated `LazyGIT` to `0.40.2` converterd some envs to args sources.list fix + nextcloud updates python fix java fixes python fix java fixes bitbucket full images
24 lines
655 B
Markdown
24 lines
655 B
Markdown
# FreeGPT WebUI by Neurogen
|
|
|
|
* Improved docker images.
|
|
* Original repo here: [Em1tSan/freegpt-webui-ru](https://github.com/Em1tSan/freegpt-webui-ru)
|
|
|
|
* All versions now running by `supervisord` instead of direct `CMD python3 ./run.py`
|
|
* Since `v1.3+` image contain **both** applications in background - `webui` chat (via port `1338`) and `endpoint` api (via port `1337`).
|
|
|
|
# Ready docker-compose example
|
|
|
|
```yml
|
|
version: "3.9"
|
|
services:
|
|
freegpt-webui:
|
|
image: epicmorg/freegpt-webui:latest #1.3.2, <...>, 1.0, etc
|
|
container_name: freegpt-webui
|
|
hostname: freegpt-webui
|
|
restart: always
|
|
ports:
|
|
- 1337:1337
|
|
- 1338:1338
|
|
```
|
|
|