Code-Repair-With-LLMs / docker-compose.yml
vineyard03's picture
Upload folder using huggingface_hub
e8248b5 verified
raw
history blame contribute delete
304 Bytes
version: "3.8"
services:
gradio_app:
build:
context: . # Use the root as context
dockerfile: .docker/Dockerfile # Specify the Dockerfile inside .docker
ports:
- "7860:7860"
volumes:
- .:/app
environment:
- PYTHONUNBUFFERED=1
restart: unless-stopped