--- name: Dockle on: push: branches: - master - develop pull_request: jobs: dockle: runs-on: ubuntu-latest env: DOCKER_CONTENT_TRUST: 1 DOCKLE_VERSION: 0.4.15 steps: - uses: actions/checkout@v4.3.0 - name: Download and install dockle v${{ env.DOCKLE_VERSION }} run: | curl -L -o dockle.deb "https://github.com/goodwithtech/dockle/releases/download/v${DOCKLE_VERSION}/dockle_${DOCKLE_VERSION}_Linux-64bit.deb" sudo dpkg -i dockle.deb - run: | cp .config/docker_example.env .config/docker.env cp ./compose_example.yml ./compose.yml - run: | docker compose up -d web IMAGE_ID=$(docker compose images --format json web | jq -r '.[0].ID') docker tag "${IMAGE_ID}" misskey-web:latest - name: Prune docker junk (optional but recommended) run: | docker system prune -af docker volume prune -f - name: Save image for Dockle run: | docker save misskey-web:latest -o ./misskey-web.tar ls -lh ./misskey-web.tar - name: Run Dockle with tar input run: | dockle --exit-code 1 --input ./misskey-web.tar