mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2025-12-24 09:24:27 +01:00
* Improve docker setup & config * fix(browsing): Selenium needs access to home directory * fix(docker): allow overriding memory backend settings * simplify Dockerfile and docker-compose config * add .dockerignore * adjust Docker CI with release build type arg * replace Chrome by Chromium in devcontainer * update docs * update bulletin * use preinstalled chromedriver in web_selenium.py * update installation.md * fix code blocks for mkdocs * fix links to docs
21 lines
397 B
YAML
21 lines
397 B
YAML
# 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
|
|
profiles: ["exclude-from-up"]
|
|
|
|
redis:
|
|
image: "redis/redis-stack-server:latest"
|