generated from jackyzha0/quartz
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
63300a4
commit b59cbe8
Showing
1 changed file
with
30 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,30 @@ | ||
--- | ||
tags: | ||
- guide | ||
title: Installing Bloodhound | ||
--- | ||
# Install Docker | ||
```bash | ||
echo "deb [arch=amd64 signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/debian bookworm stable" | \ | ||
sudo tee /etc/apt/sources.list.d/docker.list | ||
``` | ||
|
||
```bash | ||
curl -fsSL https://download.docker.com/linux/debian/gpg | | ||
sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg | ||
``` | ||
|
||
```bash | ||
sudo apt update | ||
sudo apt install -y docker-ce docker-ce-cli containerd.io | ||
``` | ||
|
||
|
||
# Install&Run Bloodhound | ||
```bash | ||
curl -L https://ghst.ly/getbhce -o compose.yml | ||
docker compose pull | ||
docker compose up -d | ||
``` | ||
|
||
After running `docker compose up` you will get a one-time password. You will use this to go to `localhost:8080` and log in as `admin`. |