Skip to content

Commit 6d1f91d

Browse files
authored
Update Docker command from docker-compose up to docker compose up (#82)
I noticed that the command `docker-compose up` did not work as intended when deploying my modus API locally after I updated to Docker v4.37.2. I changed `docker-compose up` to `docker-compose up` and tested it locally using Docker v4.37.2. The updated command worked as expected, starting the PostgreSQL instance without issues. This change is specific to newer Docker versions where the `docker-compose` may be deprecated. Optionally, we could add the newer command as a second option for those using a new version of docker
1 parent 3e9a6b3 commit 6d1f91d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modus/search.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ Start the Collections PostgreSQL database using the local Docker Compose script:
429429

430430
```sh
431431
cd modus/runtime/tools/local
432-
docker-compose up
432+
docker compose up
433433
```
434434

435435
</Step>

0 commit comments

Comments
 (0)