Change docker-compose.yml to run api and gui services simultaneously

pull/1066/head
Niapoll 8 months ago
parent 654180c484
commit 3b5ea9047f

@ -26,8 +26,8 @@ RUN pip install --upgrade pip && pip install -r requirements.txt
# This may include all code, assets, and configuration files required to run the application.
COPY . /app/
# Expose port 1337
EXPOSE 1337
# Expose port 80 and 1337
EXPOSE 80 1337
# Define the default command to run the app using Python's module mode.
CMD ["python", "-m", "g4f.api.run"]
ENTRYPOINT ["python", "-m", "g4f.cli"]

@ -1,13 +1,18 @@
version: '3'
services:
gpt4free:
gpt4free-api: &gpt4free
image: gpt4free:latest
build:
context: .
dockerfile: Dockerfile
volumes:
- .:/app
cache_from:
- gpt4free:latest
ports:
- '1337:1337'
environment:
- PYTHONUNBUFFERED=1
command: api
gpt4free-gui:
<<: *gpt4free
ports:
- '8080:80'
command: gui
Loading…
Cancel
Save