🔧 Fixed the actions and the docker daemon.json 🔧
gitea / release-gitea (push) Successful in 7m51s

.gitea/workflows/docker.yaml
rootfs/tmp/etc/docker/daemon.json
This commit is contained in:
casjay
2026-09-21 15:39:53 -04:00
parent 7e1c90cff6
commit fea6556762
2 changed files with 12 additions and 8 deletions
+3 -2
View File
@@ -1,6 +1,8 @@
name: gitea name: gitea
on: push on:
push:
workflow_dispatch:
jobs: jobs:
release-gitea: release-gitea:
@@ -65,4 +67,3 @@ jobs:
tags: | tags: |
${{ steps.meta.outputs.DOCKER_HUB }}/${{ steps.meta.outputs.DOCKER_ORG }}/${{ steps.meta.outputs.REPO_NAME }}:${{ steps.meta.outputs.DATE_TAG }} ${{ steps.meta.outputs.DOCKER_HUB }}/${{ steps.meta.outputs.DOCKER_ORG }}/${{ steps.meta.outputs.REPO_NAME }}:${{ steps.meta.outputs.DATE_TAG }}
${{ steps.meta.outputs.DOCKER_HUB }}/${{ steps.meta.outputs.DOCKER_ORG }}/${{ steps.meta.outputs.REPO_NAME }}:${{ steps.meta.outputs.DOCKER_TAG }} ${{ steps.meta.outputs.DOCKER_HUB }}/${{ steps.meta.outputs.DOCKER_ORG }}/${{ steps.meta.outputs.REPO_NAME }}:${{ steps.meta.outputs.DOCKER_TAG }}
+9 -6
View File
@@ -5,11 +5,14 @@
"experimental": true, "experimental": true,
"pidfile": "/tmp/docker.pid", "pidfile": "/tmp/docker.pid",
"cgroup-parent": "/docker", "cgroup-parent": "/docker",
"storage-driver": "fuse-overlayfs", "storage-driver": "vfs",
"insecure-registries": ["localhost"],
"features": {
"containerd-snapshotter": false
},
"default-address-pools": [ "default-address-pools": [
{"base": "172.17.0.0/12", "size": 24}, { "base": "172.17.0.0/12", "size": 24 },
{"base": "192.168.0.0/16", "size": 24}, { "base": "192.168.0.0/16", "size": 24 },
{"base": "10.0.0.0/8", "size": 24} { "base": "10.0.0.0/8", "size": 24 }
], ]
"insecure-registries": ["localhost"]
} }