Files
Auto-GPT/docker-compose.yml
Duncan Roosma d53bd020ea Update docker-compose.yml
Needed to add this to get `docker-compose run auto-gpt` to run successfully
2023-04-15 11:42:12 +02:00

19 lines
328 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
volumes:
- "./autogpt:/app"
- ".env:/app/.env"
profiles: ["exclude-from-up"]
redis:
image: "redis/redis-stack-server:latest"