gpt4free/docker-compose-slim.yml
Heiner Lohaus ea1448001d Add nodriver to Gemini provider,
Add slim docker image with google-chrome usage,
Add the new docker images to publish worklow,
Update requirements.txt and pip requirements
2024-11-17 11:06:37 +01:00

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'