Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions docs/deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,14 @@ cd cocoon
./scripts/cocoon-launch --build-dir <path> --just-build
```

**Manual build:**
**Manual build:**
Install Dependencies:
```bash
sudo apt install libjemalloc-dev liblz4-dev # Debian, Ubuntu
sudo dnf install jemalloc-devel lz4-devel # Fedora, CentOS
sudo pacman -S jemalloc lz4 # Arch Linux
```
Build:
```bash
mkdir build && cd build
cmake -GNinja \
Expand Down Expand Up @@ -282,4 +289,4 @@ CID = instance number * 10 + base CID (6 for worker, 7 for proxy, 4 for client)

- For TDX details: [TDX and Images](tdx-and-images.md)
- For RA-TLS: [RA-TLS](ra-tls.md)
- For GPU setup: [GPU](gpu.md)
- For GPU setup: [GPU](gpu.md)