You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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"
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
Originally posted by @mousberg in #4029 (comment)
The text was updated successfully, but these errors were encountered: