dcramer / peated

https://peated.com
Apache License 2.0
63 stars 13 forks source link

Issue : Docker-Compose not found #127

Closed rufevean closed 9 months ago

rufevean commented 9 months ago

Description: When attempting to start the development server by running docker-compose up -d, it was observed that the correct command for execution is docker compose up -d.

Steps to Reproduce:

Clone the repository.
Attempt to start the development server using docker-compose up -d.
Observe the error message indicating that 'docker-compose' is not found.

Expected Behavior: The provided command (docker-compose up -d) should work consistently across environments without reporting 'docker-compose not found' errors.

Proposed Solution: Update the documentation to reflect the correct command (docker compose up -d) and investigate the underlying issue causing the 'docker-compose not found' error. This could involve ensuring that Docker and Docker Compose are properly installed and accessible in the environment.

dcramer commented 9 months ago

TIL - wonder when they exposed this on the core Docker binary. Looks fine on my system so guessing we can just straight up change it to be 'docker compose' going forward.