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 52
52
env :
53
53
VERSION : ${{ matrix.postgres }}-${{ matrix.postgis }}
54
54
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'
56
56
57
57
steps :
58
58
- name : Install/config specific version of Docker packages
78
78
docker run hello-world
79
79
echo "***** Displaying Docker information..."
80
80
docker info
81
- echo "***** Configuring Docker for containerd image store..."
81
+ echo "***** Configuring Docker for containerd image store and builder keepStorage ..."
82
82
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
83
94
sudo systemctl restart docker
84
95
docker info -f '{{ .DriverStatus }}'
85
96
You can’t perform that action at this time.
0 commit comments