mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2026-01-16 12:34:20 +01:00
17 lines
405 B
YAML
17 lines
405 B
YAML
# To boot the app run the following:
|
|
# docker compose run auto-gpt
|
|
# NOTE: Version 3.9 requires at least Docker Compose version 2 and Docker Engine version 20.10.13!
|
|
|
|
version: "3.9"
|
|
|
|
services:
|
|
auto-gpt:
|
|
build: ./
|
|
env_file:
|
|
- .env
|
|
volumes:
|
|
- ./:/app
|
|
- ./docker-compose.yml:/app/docker-compose.yml:ro
|
|
- ./Dockerfile:/app/Dockerfile:ro
|
|
profiles: ["exclude-from-up"]
|