CoolFace
Apppublic

coding-alt/AutoGPT

sourceHugging Facemitupdated 3y agoView on Hugging Face
0likes
docker-compose.yml19 linesDownload Raw Back to root
1# To boot the app run the following:2# docker-compose run auto-gpt3version: "3.9"4 5services:6  auto-gpt:7    depends_on:8      - redis9    build: ./10    env_file:11      - .env12    volumes:13      - "./autogpt:/app"14      - ".env:/app/.env"15    profiles: ["exclude-from-up"]16 17  redis:18    image: "redis/redis-stack-server:latest"19