You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gpt4free/docker-compose.yml

19 lines
306 B
YAML

version: '3'
services:
gpt4free-api: &gpt4free
image: gpt4free:latest
build:
context: .
dockerfile: Dockerfile
cache_from:
- gpt4free:latest
ports:
- '1337:1337'
command: api
gpt4free-gui:
<<: *gpt4free
ports:
- '8080:80'
command: gui