docs: Update README.md and CHANGELOG.md for v2.1.1
- Update version to v2.1.1 in README.md - Add new features section for v2.1.1 including Docker auto-repair, NFS fixes, Netdata updates - Update CHANGELOG.md with detailed fixes and improvements - Update service descriptions to reflect optional nature of services - Add Docker repair script to directory structure and troubleshooting - Document new auto-repair functionality and optional unattended-upgrades
This commit is contained in:
17
setup.sh
17
setup.sh
@@ -502,6 +502,23 @@ show_installation_summary() {
|
||||
echo " ✓ Webmin web interface: https://$(hostname -I | awk '{print $1}'):10000"
|
||||
fi
|
||||
|
||||
# Docker notes
|
||||
if [[ "${INSTALL_DOCKER:-false}" != "true" ]]; then
|
||||
echo
|
||||
log_warning "Docker wurde nicht installiert oder wurde während der Installation deaktiviert."
|
||||
echo "If you need Docker later, repair the daemon and restart Docker with the helper script in the repository:"
|
||||
echo " cd $(pwd) && sudo bash scripts/repair_docker.sh"
|
||||
echo "Or create a minimal valid daemon.json and restart Docker manually:"
|
||||
echo " sudo mv /etc/docker/daemon.json /tmp/daemon.json.broken.$(date +%s) || true"
|
||||
echo " sudo tee /etc/docker/daemon.json > /dev/null <<'EOF'"
|
||||
echo "{"
|
||||
echo " \"storage-driver\": \"overlay2\""
|
||||
echo "}"
|
||||
echo "EOF"
|
||||
echo " sudo systemctl daemon-reload && sudo systemctl restart docker"
|
||||
echo
|
||||
fi
|
||||
|
||||
echo
|
||||
log_info "Next steps:"
|
||||
echo " 1. Reboot the system to ensure all changes take effect"
|
||||
|
||||
Reference in New Issue
Block a user