File tree Expand file tree Collapse file tree 1 file changed +13
-2
lines changed Expand file tree Collapse file tree 1 file changed +13
-2
lines changed Original file line number Diff line number Diff line change 5252 env :
5353 VERSION : ${{ matrix.postgres }}-${{ matrix.postgis }}
5454 VARIANT : ${{ matrix.variant }}
55- DOCKER_APT_PKG_VER : ' 5:28.1 .1-1~ubuntu.24.04~noble'
55+ DOCKER_APT_PKG_VER : ' 5:28.3 .1-1~ubuntu.24.04~noble'
5656
5757 steps :
5858 - name : Install/config specific version of Docker packages
7878 docker run hello-world
7979 echo "***** Displaying Docker information..."
8080 docker info
81- echo "***** Configuring Docker for containerd image store..."
81+ echo "***** Configuring Docker for containerd image store and builder keepStorage ..."
8282 echo "{ \"features\": { \"containerd-snapshotter\": true }}" | sudo tee /etc/docker/daemon.json
83+ echo $'{
84+ "features": {
85+ "containerd-snapshotter": true
86+ },
87+ "builder": {
88+ "gc": {
89+ "defaultKeepStorage": "20GB",
90+ "enabled": true
91+ }
92+ }
93+ }' | sudo tee /etc/docker/daemon.json
8394 sudo systemctl restart docker
8495 docker info -f '{{ .DriverStatus }}'
8596
You can’t perform that action at this time.
0 commit comments