File size: 475 Bytes
ad4c1f0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
d84409c
 
ad4c1f0
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# To boot the app run the following:
# docker-compose run auto-gpt
version: "3.9"

services:
  auto-gpt:
    depends_on:
      - redis
    build: ./
    env_file:
      - .env
    environment:
      MEMORY_BACKEND: ${MEMORY_BACKEND:-redis}
      REDIS_HOST: ${REDIS_HOST:-redis}
    volumes:
      - ./:/app
      - ./auto_gpt_workspace:/app/auto_gpt_workspace
      - ./logs:/app/logs
    profiles: ["exclude-from-up"]

  redis:
    image: "redis/redis-stack-server:latest"