mirror of
https://github.com/xtekky/gpt4free.git
synced 2024-11-28 11:07:24 +03:00
ea1448001d
Add slim docker image with google-chrome usage, Add the new docker images to publish worklow, Update requirements.txt and pip requirements
25 lines
496 B
YAML
25 lines
496 B
YAML
version: '3'
|
|
|
|
services:
|
|
g4f-gui:
|
|
container_name: g4f-gui
|
|
image: hlohaus789/g4f:slim
|
|
build:
|
|
context: .
|
|
dockerfile: docker/Dockerfile-slim
|
|
command: python -m g4f.cli gui -debug
|
|
volumes:
|
|
- .:/app
|
|
ports:
|
|
- '8080:8080'
|
|
g4f-api:
|
|
container_name: g4f-api
|
|
image: hlohaus789/g4f:slim
|
|
build:
|
|
context: .
|
|
dockerfile: docker/Dockerfile-slim
|
|
command: python -m g4f.cli api
|
|
volumes:
|
|
- .:/app
|
|
ports:
|
|
- '1337:1337' |