|
| 1 | +name: Build and Publish Docker Image |
| 2 | + |
| 3 | +on: |
| 4 | + push: |
| 5 | + tags: |
| 6 | + - 'v*.*.*' |
| 7 | + |
| 8 | +jobs: |
| 9 | + docker: |
| 10 | + runs-on: ubuntu-latest |
| 11 | + permissions: |
| 12 | + contents: write |
| 13 | + packages: write |
| 14 | + |
| 15 | + steps: |
| 16 | + - name: Checkout |
| 17 | + uses: actions/checkout@v4 |
| 18 | + |
| 19 | + - name: Setup Node.js |
| 20 | + uses: actions/setup-node@v4 |
| 21 | + with: |
| 22 | + node-version: '18' |
| 23 | + cache: 'npm' |
| 24 | + |
| 25 | + - name: Docker meta |
| 26 | + id: meta |
| 27 | + uses: docker/metadata-action@v5 |
| 28 | + with: |
| 29 | + images: mrorbitman/subsyncarr |
| 30 | + tags: | |
| 31 | + type=semver,pattern={{version}} |
| 32 | + type=semver,pattern={{major}}.{{minor}} |
| 33 | + type=semver,pattern={{major}} |
| 34 | + type=raw,value=latest,enable=${{ github.ref == format('refs/tags/{0}', github.event.repository.default_branch) }} |
| 35 | +
|
| 36 | + - name: Set up QEMU |
| 37 | + uses: docker/setup-qemu-action@v3 |
| 38 | + |
| 39 | + - name: Set up Docker Buildx |
| 40 | + uses: docker/setup-buildx-action@v3 |
| 41 | + |
| 42 | + - name: Login to Docker Hub |
| 43 | + uses: docker/login-action@v3 |
| 44 | + with: |
| 45 | + username: ${{ secrets.DOCKERHUB_USERNAME }} |
| 46 | + password: ${{ secrets.DOCKERHUB_TOKEN }} |
| 47 | + |
| 48 | + - name: Build and push |
| 49 | + uses: docker/build-push-action@v5 |
| 50 | + with: |
| 51 | + context: . |
| 52 | + push: true |
| 53 | + platforms: linux/amd64,linux/arm64 |
| 54 | + tags: ${{ steps.meta.outputs.tags }} |
| 55 | + labels: ${{ steps.meta.outputs.labels }} |
| 56 | + cache-from: type=gha |
| 57 | + cache-to: type=gha,mode=max |
| 58 | + - name: Create GitHub Release |
| 59 | + uses: softprops/action-gh-release@v1 |
| 60 | + with: |
| 61 | + name: Release ${{ github.ref_name }} |
| 62 | + body: | |
| 63 | + ## Docker Images |
| 64 | +
|
| 65 | + Pull the image using: |
| 66 | + ```bash |
| 67 | + docker pull mrorbitman/subsyncarr:${{ github.ref_name }} |
| 68 | + # or |
| 69 | + docker pull mrorbitman/subsyncarr:latest |
| 70 | + ``` |
| 71 | +
|
| 72 | + Example docker-compose.yaml: |
| 73 | +
|
| 74 | + ``` |
| 75 | + version: "3.8" |
| 76 | +
|
| 77 | + services: |
| 78 | + subsyncarr: |
| 79 | + image: mrorbitman/subsyncarr:latest |
| 80 | + container_name: subsyncarr |
| 81 | + volumes: |
| 82 | + - ${MEDIA_PATH:-/path/to/your/media}:/scan_dir |
| 83 | + restart: unless-stopped |
| 84 | + environment: |
| 85 | + - TZ=${TZ:-UTC} |
| 86 | + ``` |
| 87 | +
|
| 88 | + Docker Hub URL: https://hub.docker.com/r/mrorbitman/subsyncarr/tags |
| 89 | + draft: false |
| 90 | + prerelease: false |
0 commit comments