2023-07-01 18:20:35 +03:00
|
|
|
# FreeGPT WebUI by Neurogen
|
2023-07-01 17:57:40 +03:00
|
|
|
|
2023-07-01 19:20:15 +03:00
|
|
|
* Improved docker images.
|
|
|
|
* Original repo here: [Em1tSan/freegpt-webui-ru](https://github.com/Em1tSan/freegpt-webui-ru)
|
2023-07-01 18:20:35 +03:00
|
|
|
|
2023-07-05 17:46:07 +03:00
|
|
|
* 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`).
|
2023-07-01 17:57:40 +03:00
|
|
|
|
2023-07-05 17:46:07 +03:00
|
|
|
# Ready docker-compose example
|
2023-07-04 19:20:10 +03:00
|
|
|
|
2023-07-01 17:57:40 +03:00
|
|
|
```yml
|
|
|
|
version: "3.9"
|
|
|
|
services:
|
|
|
|
freegpt-webui:
|
2023-07-05 17:46:07 +03:00
|
|
|
image: epicmorg/freegpt-webui:latest #1.3.2, <...>, 1.0, etc
|
2023-07-01 17:57:40 +03:00
|
|
|
container_name: freegpt-webui
|
|
|
|
hostname: freegpt-webui
|
|
|
|
restart: always
|
|
|
|
ports:
|
2023-07-05 17:46:07 +03:00
|
|
|
- 1337:1337
|
2023-07-01 17:57:40 +03:00
|
|
|
- 1338:1338
|
|
|
|
```
|
2023-07-04 19:20:10 +03:00
|
|
|
|