Skip to content

Commit

Permalink
the aj version is working
Browse files Browse the repository at this point in the history
  • Loading branch information
mike dupont committed Oct 15, 2023
1 parent eae4192 commit 6cf934d
Showing 1 changed file with 24 additions and 20 deletions.
44 changes: 24 additions & 20 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
version: '3'
services:

act_base: #root base of action
build: vendor/act_base
image: h4ckermike/act_base

poetry_base: # use poetry
image: h4ckermike/poetry_base
build:
Expand All @@ -18,7 +18,7 @@ services:

depends_on:
- act_base

ai_ticket: # the ticket to unite
image: h4ckermike/ai_ticket
build:
Expand All @@ -27,7 +27,7 @@ services:
BASE_IMAGE: h4ckermike/poetry_base
depends_on:
- poetry_base

basic_agent: #basic agent
image: h4ckermike/basic_agent
build:
Expand All @@ -52,7 +52,6 @@ services:
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- ./vendor/lollms/:/app/ #mount the source in for editing without reboot

#ports:
# - "8080:5000" #the app listens on mockopenai:5000 inside of docker

Expand Down Expand Up @@ -108,7 +107,7 @@ services:
args:
BASE_IMAGE: h4ckermike/basic_agent
#vendor/Auto-GPT-Turbo/Dockerfile

# vendor/AutoGPTv2/autogpts/autogpt/.devcontainer/Dockerfile
# vend or/AutoGPTv2/autogpts/autogpt/Dockerfile
# auto_honey_comber:
Expand Down Expand Up @@ -139,16 +138,21 @@ services:
- ./vendor/Auto-GPT-chat-gpt-prompts/:/app/ #mount the source in for editing witho
- ./vendor/Auto-GPT/autogpts/autogpt/ai_settings.yaml:/tmp/ai_settings.yaml
# vendor/Auto-GPT-chat-gpt-prompts/.devcontainer/Dockerfile
#

Auto-GPT-aj:
#

auto-gpt-aj:
entrypoint: bash -c "python -m autogpt -y --ai-settings /tmp/ai_settings.yaml "
environment:
- GITHUB_PAT="${GITHUB_PAT}"
- GITHUB_REPO="jmikedupont2/ai-ticket"
- OPENAI_API_KEY=your-openai-api-key
- OPENAI_API_BASE=http://mockopenai:5000/v1
build:
context: vendor/Auto-GPT-aj/
#dockerfile:
context: vendor/Auto-GPT-aj
volumes:
- ./vendor/Auto-GPT-aj/:/app/ #mount the source in for editing witho
- ./vendor/Auto-GPT/autogpts/autogpt/ai_settings.yaml:/tmp/ai_settings.yaml

# vendor/Auto-GPT-aj/.devcontainer/Dockerfile
# vendor/Auto-GPT-aj/Dockerfile

# vendor/babyagi/Dockerfile
# vendor/ScottGPT/autogpts/autogpt/.devcontainer/Dockerfile
# vendor/ScottGPT/autogpts/autogpt/Dockerfile
Expand Down Expand Up @@ -198,10 +202,10 @@ services:
# vendor/Auto-GPT/autogpts/autogpt/.devcontainer/Dockerfile
# vendor/Auto-GPT/autogpts/forge/Dockerfile

args:
BASE_IMAGE: h4ckermike/basic_agent
# args:
# BASE_IMAGE: h4ckermike/basic_agent

depends_on:
- basic_agent
- mockopenai
image: h4ckermike/autogpt
# depends_on:
# - basic_agent
# - mockopenai
# image: h4ckermike/autogpt

0 comments on commit 6cf934d

Please sign in to comment.