22 lines
467 B
YAML
22 lines
467 B
YAML
# To boot the app run the following:
|
|
# docker-compose run auto-gpt
|
|
# NOTE: Version 3.9 requires at least docker-compose version 1.29.0 !
|
|
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
|
|
profiles: ["exclude-from-up"]
|
|
|
|
redis:
|
|
image: "redis/redis-stack-server:latest"
|