-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Doc] : Add Wiki for setup local env for start raccoon
- Loading branch information
1 parent
e5964bf
commit 0dc17e9
Showing
1 changed file
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# Setup Local Env for Starting Raccoon | ||
|
||
1. Download docker at `https://docs.docker.com/desktop/mac/install/` | ||
2. Clone Raccoon | ||
``` | ||
cd Desktop | ||
git clone [email protected]:odpf/raccoon.git | ||
cd raccoon | ||
``` | ||
|
||
3. Download docker image for raccoon | ||
``` | ||
docker pull odpf/raccoon | ||
``` | ||
|
||
4. Start `odpf/raccoon` in the docker GUI | ||
5. If you using macbook with apple chip, before running the docker-run, do change the | ||
`docker-compose.yml` and add `platform: linux/x86_64` on each section | ||
|
||
``` | ||
services: | ||
zookeeper: | ||
platform: linux/x86_64 | ||
... | ||
kafka: | ||
platform: linux/x86_64 | ||
... | ||
cs: | ||
platform: linux/x86_64 | ||
... | ||
``` | ||
|
||
6. Run raccoon along with kafka setup | ||
``` | ||
make docker-run | ||
``` | ||
|
||
|
||
|