commit 2859d9c76e4fb85da67c28dc592818cbc2d278b7 Author: Your Name Date: Sat Aug 23 09:05:08 2025 +0000 first commit diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml new file mode 100644 index 0000000..9bcc41b --- /dev/null +++ b/.gitea/workflows/release.yml @@ -0,0 +1,26 @@ +name: Release + +on: [push] + +jobs: + build-and-push: + runs-on: ubuntu-latest + permissions: + contents: read + packages: write + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Log in to GitHub Container Registry + uses: actions/docker-login@v2 + with: + registry: git.coocn.cn + username: ${{ secrets.USERNAME }} + password: ${{ secrets.PASSWORD }} + - name: Build and push Docker image + uses: actions/docker-build@v5 + with: + context: . + push: true + tags: git.coocn.cn/${{ github.repository }} diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..1839203 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,7 @@ +FROM ubuntu:22.04 + +COPY nerdctl-2.1.3-linux-amd64.tar.gz /tmp/nerdctl.tgz +RUN tar -xzf /tmp/nerdctl.tgz -C /usr/local/bin && rm -rf /tmp/* + +COPY entrypoint.sh /entrypoint.sh +ENTRYPOINT ["/entrypoint.sh"] diff --git a/action.yml b/action.yml new file mode 100644 index 0000000..322ac23 --- /dev/null +++ b/action.yml @@ -0,0 +1,16 @@ +name: "Nerdctl Compose Action" +description: "在容器中使用 nerdctl 启动容器" +author: "coocn" + +inputs: + file: + description: "要启动的Compose配置文件路径" + required: true + args: + description: "传递给 nerdctl 的参数" + required: false + default: up -d + +runs: + using: "docker" + image: "docker://ghcr.io/${{ github.repository }}:latest" diff --git a/entrypoint.sh b/entrypoint.sh new file mode 100755 index 0000000..e60736d --- /dev/null +++ b/entrypoint.sh @@ -0,0 +1,5 @@ +#!/bin/bash +set -e + +echo "Running nerdctl compose with file: $INPUT_FILE" +exec nerdctl compose -f "$INPUT_FILE" $INPUT_ARGS diff --git a/nerdctl-2.1.3-linux-amd64.tar.gz b/nerdctl-2.1.3-linux-amd64.tar.gz new file mode 100644 index 0000000..6b9d200 Binary files /dev/null and b/nerdctl-2.1.3-linux-amd64.tar.gz differ