Skip to content

Commit

Permalink
[Doc] : Add Wiki for setup local env for start raccoon
Browse files Browse the repository at this point in the history
  • Loading branch information
radityagumay committed Apr 27, 2022
1 parent e5964bf commit 0dc17e9
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions START_RACCOON.md
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
```



0 comments on commit 0dc17e9

Please sign in to comment.