AutoGPT
AutoGPT copied to clipboard
This fixed it for me, as you're using docker-compose I assume, update your `docker-compose.yml` file to:
This fixed it for me, as you're using docker-compose I assume, update your `docker-compose.yml` file to:
version: "3.9"
services:
auto-gpt:
image: significantgravitas/auto-gpt
depends_on:
- redis
env_file:
- .env
environment:
MEMORY_BACKEND: ${MEMORY_BACKEND:-redis}
REDIS_HOST: ${REDIS_HOST:-redis}
profiles: ["exclude-from-up"]
volumes:
- ./auto_gpt_workspace:/app/autogpt/auto_gpt_workspace
- ./data:/app/data
## allow auto-gpt to write logs to disk
- ./logs:/app/logs
## uncomment following lines if you have / want to make use of these files
#- ./azure.yaml:/app/azure.yaml
#- ./ai_settings.yaml:/app/ai_settings.yaml
redis:
image: "redis/redis-stack-server:latest"
Originally posted by @mousberg in https://github.com/Significant-Gravitas/Auto-GPT/issues/4029#issuecomment-1538952921
what in this is different than default? or do you mean just fill it for my spec reqs?
I recently followed the setup guide and the referenced compose file had the ./auto_gpt_workspace:/app/autogpt/auto_gpt_workspace
volume mount not the correct path for in the container, this shows the correct path for the auto_gpt_workspace is what I see
If you want to ask clarifying questions on another issue, don't make a duplicate, just ask on the other thread. This will likely get closed.
Duplicate of #4029
Fixed with https://github.com/Significant-Gravitas/Auto-GPT/pull/3927