Skip to content

Commit 83e9660

Browse files
authored
Merge pull request #113 from buildplan/dev
fix: docker daemon config
2 parents ae9bf21 + daae53d commit 83e9660

3 files changed

Lines changed: 11 additions & 10 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77

88
-----
99

10-
**Version:** v0.80.5
10+
**Version:** v0.80.6
1111

12-
**Last Updated:** 2026-03-26
12+
**Last Updated:** 2026-04-30
1313

1414
**Compatible With:**
1515

@@ -88,12 +88,12 @@ sha256sum du_setup.sh
8888

8989
Compare the output hash to the one below. They must match exactly.
9090

91-
`f6c7047a052fc795612dadc6e72871dc756c30c87698a302fc7c46c1e3582bda`
91+
`00cdf04cf4603c26241b64a86d8fe349e58e5b7e649227356627eae77dc038f5`
9292

9393
Or echo the hash to check, it should output: `du_setup.sh: OK`
9494

9595
```bash
96-
echo f6c7047a052fc795612dadc6e72871dc756c30c87698a302fc7c46c1e3582bda du_setup.sh | sha256sum --check
96+
echo 00cdf04cf4603c26241b64a86d8fe349e58e5b7e649227356627eae77dc038f5 du_setup.sh | sha256sum --check
9797
```
9898

9999
### 3. Run the Script

du_setup.sh

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
#!/bin/bash
22

33
# Debian and Ubuntu Server Hardening Interactive Script
4-
# Version: 0.80.5 | 2026-03-26
4+
# Version: 0.80.6 | 2026-04-30
55
# Changelog:
6+
# - v0.80.6: Fix Docker config, private Docker network to use a private ip range.
67
# - v0.80.5: Fixed a crash in timezone validation by checking for files (-f) instead of directories.
78
# Resolved unexpected set -e terminations during 'pretty hostname' assignment and SSH port detection.
8-
# - v0.80.4: Warn and finish the script if Docker, Tailscale and Netbird fail to install properly.
9+
# - v0.80.4: Warn and finish the script if Docker, Tailscale and Netbird fail to install properly.
910
# - v0.80.3: Warn about password-less sudo and offer to generate password for the user if they choose to do so.
1011
# Improve SSH service detection for Debian systems.
1112
# - v0.80.2: Added an optional install of netbird (https://netbird.io/) as an alternative to tailscale.
@@ -108,7 +109,7 @@
108109
set -euo pipefail
109110

110111
# --- Update Configuration ---
111-
CURRENT_VERSION="0.80.5"
112+
CURRENT_VERSION="0.80.6"
112113
SCRIPT_URL="https://raw.githubusercontent.com/buildplan/du_setup/refs/heads/main/du_setup.sh"
113114
CHECKSUM_URL="${SCRIPT_URL}.sha256"
114115

@@ -272,7 +273,7 @@ print_header() {
272273
printf '%s\n' "${CYAN}╔═════════════════════════════════════════════════════════════════╗${NC}"
273274
printf '%s\n' "${CYAN}║ ║${NC}"
274275
printf '%s\n' "${CYAN}║ DEBIAN/UBUNTU SERVER SETUP AND HARDENING SCRIPT ║${NC}"
275-
printf '%s\n' "${CYAN}║ v0.80.5 | 2026-03-26${NC}"
276+
printf '%s\n' "${CYAN}║ v0.80.6 | 2026-04-30${NC}"
276277
printf '%s\n' "${CYAN}║ ║${NC}"
277278
printf '%s\n' "${CYAN}╚═════════════════════════════════════════════════════════════════╝${NC}"
278279
printf '\n'
@@ -4531,7 +4532,7 @@ install_docker() {
45314532
],
45324533
"default-address-pools": [
45334534
{
4534-
"base": "172.80.0.0/16",
4535+
"base": "172.20.0.0/16",
45354536
"size": 24
45364537
}
45374538
],

du_setup.sh.sha256

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
f6c7047a052fc795612dadc6e72871dc756c30c87698a302fc7c46c1e3582bda du_setup.sh
1+
00cdf04cf4603c26241b64a86d8fe349e58e5b7e649227356627eae77dc038f5 du_setup.sh

0 commit comments

Comments
 (0)