Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

This fixed it for me, as you're using docker-compose I assume, update your docker-compose.yml file to: #4034

Closed
cryptskii opened this issue May 8, 2023 · 4 comments

Comments

@cryptskii
Copy link

          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 #4029 (comment)

@cryptskii
Copy link
Author

cryptskii commented May 8, 2023

what in this is different than default? or do you mean just fill it for my spec reqs?

@delconis
Copy link

delconis commented May 9, 2023

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

@anonhostpi
Copy link

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

@k-boikov
Copy link
Contributor

Fixed with #3927

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants