Skip to content

Commit 308daf8

Browse files
authored
Update HOWTO_DEVELOPMENT_LOCAL_SETUP.md for more recent versions of Docker that don't include docker-compose (#2338)
Noticed today when I updated Docker that it no longer comes with docker-compose on Mac. Added instructions for how I installed it.
1 parent e217a97 commit 308daf8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/HOWTO_DEVELOPMENT_LOCAL_SETUP.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ Docker is optional, but can help with a consistent development environment using
7676
1. Install docker and docker compose
7777

7878
- Docker allows you to run apps in containers and can be installed [here with Docker's instructions](https://docs.docker.com/desktop/)
79-
- Docker Compose is the tool used to create and run docker configurations. If you installed Docker on Mac, you already have Docker Compose, if you're using Linux or Windows you can install Docker Compose [with these instructions](https://docs.docker.com/compose/install/)
79+
- Docker Compose is the tool used to create and run docker configurations. If you installed Docker on Mac, a good way to install Docker Compose is to use [homebrew](https://brew.sh/). Once you have homebrew set up, you can run `brew install docker-compose`. if you're using Linux or Windows you can install Docker Compose [with these instructions](https://docs.docker.com/compose/install/)
8080

8181
2. Make sure Docker is running on your machine and then build and run Spoke with `docker-compose up -d` to run redis and postgres in the background
8282
- You can stop docker compose at any time with `docker-compose down`, and data will persist next time you run `docker-compose up`.

0 commit comments

Comments
 (0)