add docker compose scheduling
parent
d7b747600d
commit
de2281d824
|
@ -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"
|
Loading…
Reference in New Issue