mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2025-12-24 09:24:27 +01:00
* Update setup.md Change "docker-compose" command to "docker compose" to avoid future issues with running the Docker method (`docker-compose` is v1 and is outdated, is not a recognized command with newer versions of Docker engine) * Update usage.md * Update comment in docker-compose.yml --------- Co-authored-by: Reinier van der Leer <github@pwuts.nl>
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"]
|