initial commit
This commit is contained in:
@@ -0,0 +1 @@
|
|||||||
|
.env
|
||||||
+10
@@ -0,0 +1,10 @@
|
|||||||
|
FROM node:latest
|
||||||
|
WORKDIR /workdir
|
||||||
|
|
||||||
|
RUN apt update && \
|
||||||
|
apt install -y git bash docker-cli && \
|
||||||
|
npm install -g --ignore-scripts @earendil-works/pi-coding-agent && \
|
||||||
|
pi install npm:pi-subagents
|
||||||
|
|
||||||
|
COPY * /workdir/
|
||||||
|
ENTRYPOINT ["pi", "-p"]
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
You have access to the following:
|
||||||
|
|
||||||
|
- gitea repo for code
|
||||||
|
- url: https://gitea.ct.cozytren.ch
|
||||||
|
- username: "agentbox"
|
||||||
|
- password in $GITEA_PASSWORD
|
||||||
|
- login over https, not ssh
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
services:
|
||||||
|
dind:
|
||||||
|
image: docker:dind
|
||||||
|
restart: unless-stopped
|
||||||
|
privileged: true
|
||||||
|
llm-runner:
|
||||||
|
build:
|
||||||
|
context: .
|
||||||
|
dockerfile: Dockerfile
|
||||||
|
environment:
|
||||||
|
DOCKER_HOST: tcp://dind:2375
|
||||||
|
depends_on:
|
||||||
|
dind:
|
||||||
|
condition: service_started
|
||||||
|
env_file: .env
|
||||||
Reference in New Issue
Block a user