File size: 342 Bytes
a347f05 d6da3ac a347f05 d6da3ac a347f05 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
# Docker compose file to LOCAL development
services:
all-gguf-same-where:
build:
context: .
dockerfile: Dockerfile
image: all-gguf-same-where
container_name: all-gguf-same-where
ports:
- "7860:7860"
volumes:
- .:/home/user/app
environment:
- RUN_LOCALLY=1
- HF_TOKEN=${HF_TOKEN}
|