AutoGPTWeb / docker-compose.yml
LolorzoloL's picture
Update docker-compose.yml
d84409c
raw
history blame contribute delete
475 Bytes
# 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"