first commit
Some checks failed
Docker Build and Push / build-and-push (push) Has been cancelled
Tests / test (bash) (push) Has been cancelled
Tests / test (zsh) (push) Has been cancelled
Tests / lint (push) Has been cancelled
Tests / docker (push) Has been cancelled

This commit is contained in:
2025-12-02 09:02:03 +01:00
commit 24d36cbad4
27 changed files with 2781 additions and 0 deletions

30
docker-compose.yml Normal file
View File

@@ -0,0 +1,30 @@
version: '3.8'
services:
finish:
build:
context: .
dockerfile: Dockerfile
image: finish:latest
container_name: finish
stdin_open: true
tty: true
volumes:
- finish-data:/root/.finish
environment:
- ACSH_ENDPOINT=http://host.docker.internal:1234/v1/chat/completions
extra_hosts:
- "host.docker.internal:host-gateway"
command: /bin/bash
finish-test:
build:
context: .
dockerfile: Dockerfile.test
image: finish:test
container_name: finish-test
volumes:
- .:/opt/finish
volumes:
finish-data: