mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2025-12-25 18:04:28 +01:00
Co-authored-by: Reinier van der Leer <github@pwuts.nl> Co-authored-by: Nicholas Tindle <nick@ntindle.com> Co-authored-by: BillSchumacher <34168009+BillSchumacher@users.noreply.github.com>
20 lines
424 B
YAML
20 lines
424 B
YAML
# To boot the app run the following:
|
|
# docker-compose run auto-gpt
|
|
version: '3.9'
|
|
|
|
services:
|
|
auto-gpt:
|
|
depends_on:
|
|
- redis
|
|
build:
|
|
dockerfile: .devcontainer/Dockerfile
|
|
context: ../
|
|
tty: true
|
|
environment:
|
|
MEMORY_BACKEND: ${MEMORY_BACKEND:-redis}
|
|
REDIS_HOST: ${REDIS_HOST:-redis}
|
|
volumes:
|
|
- ../:/workspace/Auto-GPT
|
|
redis:
|
|
image: 'redis/redis-stack-server:latest'
|