-
Notifications
You must be signed in to change notification settings - Fork 11
/
docker-compose.yml
37 lines (30 loc) · 1.2 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
version: '3'
services:
ai_ticket:
image: ai_ticket
build:
context: .
#entrypoint: /bin/bash
#stdin_open: true # docker run -i
#tty: true # docker run -t
autogpt:
#entrypoint: bash -c "poetry run pip install /opt/ai-ticket && poetry run autogpt --install-plugin-deps --skip-news -y"
entrypoint: bash -c "poetry run pip install /opt/ai-ticket && poetry run autogpt --install-plugin-deps --skip-news -y --ai-name 'meta-autogpt' --ai-role 'you will introspect autogpt and reveal its internals via reflection and comprehension' --ai-goal 'Observe your behaviour' --ai-goal 'Reflect over your outcomes' --ai-goal 'Orient yourself to your knowledge' --ai-goal 'Decide on your next step' --ai-goal 'Act on your chosen next experiment' "
# uncomment thse next 3 lines for debugging
#entrypoint: /bin/bash
#stdin_open: true # docker run -i
#tty: true # docker run -t
build:
context: vendor/Auto-GPT/
depends_on:
- mockopenai
mockopenai:
depends_on:
- ai_ticket
environment:
- GITHUB_PAT=${GITHUB_PAT}
- GITHUB_REPO=${GITHUB_REPO}
build:
context: vendor/lollms/
ports:
- "5000:5000"