dockerimg: add docker to the sketch image
diff --git a/dockerimg/Dockerfile.base b/dockerimg/Dockerfile.base
index f9e1ae8..3d1b56a 100644
--- a/dockerimg/Dockerfile.base
+++ b/dockerimg/Dockerfile.base
@@ -24,6 +24,7 @@
 	apt-get install -y --no-install-recommends \
 		ca-certificates wget \
 		git jq sqlite3 npm nodejs gh ripgrep fzf python3 curl vim lsof iproute2 less \
+		docker.io docker-compose-v2 docker-buildx \
 		libglib2.0-0 libnss3 libx11-6 libxcomposite1 libxdamage1 \
 		libxext6 libxi6 libxrandr2 libgbm1 libgtk-3-0 \
 		fonts-noto-color-emoji fonts-symbola && \
@@ -32,6 +33,9 @@
 	rm -rf /var/lib/apt/lists/* && \
 	rm -rf /usr/share/{doc,doc-base,info,lintian,man,groff,locale,zoneinfo}/*
 
+RUN echo '{"storage-driver":"vfs", "bridge":"none", "iptables":false, "ip-forward": false}' \
+	> /etc/docker/daemon.json
+
 # Install Go 1.24
 ENV GO_VERSION=1.24.3
 ENV GOROOT=/usr/local/go
@@ -67,4 +71,4 @@
 ENV GOTOOLCHAIN=auto
 ENV SKETCH=1
 
-RUN mkdir -p /root/.cache/sketch/webui
\ No newline at end of file
+RUN mkdir -p /root/.cache/sketch/webui