Merge pull request #836 from mikekelly/add-docker-compose

Add docker compose scheduling
This commit is contained in:
Richard Beales
2023-04-13 21:38:43 +01:00
committed by GitHub

16
docker-compose.yml Normal file
View File

@@ -0,0 +1,16 @@
# To boot the app run the following:
# docker-compose run auto-gpt
version: "3.9"
services:
auto-gpt:
depends_on:
- redis
build: ./
volumes:
- "./scripts:/app"
- ".env:/app/.env"
profiles: ["exclude-from-up"]
redis:
image: "redis/redis-stack-server:latest"