AutoGPT/docker-compose.yml

19 lines
328 B
YAML
Raw Normal View History

2023-04-11 16:30:15 +00:00
# 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
2023-04-11 16:30:15 +00:00
volumes:
- "./autogpt:/app"
2023-04-11 16:30:15 +00:00
- ".env:/app/.env"
profiles: ["exclude-from-up"]
redis:
image: "redis/redis-stack-server:latest"