Skip to content

Commit

Permalink
Merge pull request #142 from utkonos/patch-5
Browse files Browse the repository at this point in the history
Add a Quick One-Liner for Creating `/etc/docker/daemon.json`
  • Loading branch information
cccs-rs authored Dec 31, 2024
2 parents 47cee58 + 1c9aa8a commit cbe910d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion docs/installation/appliance/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ This is the documentation for an appliance instance of the Assemblyline platform

### Configure Docker to use larger address pools
1. Create/Edit `/etc/docker/daemon.json` and add the following lines:
```
```json
{
"default-address-pools":
[
Expand All @@ -77,6 +77,10 @@ This is the documentation for an appliance instance of the Assemblyline platform
}
```

```bash
echo '{"default-address-pools":[{"base":"10.201.0.0/16","size":24}]}' | jq '.' | sudo tee /etc/docker/daemon.json
```

2. Restart Docker to acknowledge configuration: `service docker restart`

## Setup your Assemblyline appliance
Expand Down

0 comments on commit cbe910d

Please sign in to comment.