This commit is contained in:
Pawel
2026-05-22 13:57:56 -04:00
parent 86d582a572
commit f0ea67bb45
10 changed files with 2096 additions and 23 deletions

16
docker-compose.webapp.yml Normal file
View File

@@ -0,0 +1,16 @@
services:
climbingboardgpt-webapp:
build:
context: .
dockerfile: Dockerfile.webapp
container_name: climbingboardgpt-webapp
restart: unless-stopped
ports:
- "127.0.0.1:8055:8055"
environment:
CBGPT_DEVICE: "cpu"
CBGPT_TORCH_THREADS: "1"
volumes:
- ./models:/app/models:ro
- ./data/processed/tokenized:/app/data/processed/tokenized:ro
- ./images:/app/images:ro