• 0 Posts
  • 13 Comments
Joined 2 years ago
cake
Cake day: June 21st, 2023

help-circle
  • Docker host running immich amongst other containers. Backups are done nightly to a nas device on location, the immich container has a volume mount to an external SSD.

    Fire: nah, won’t survive it. Planning to fix this in the next few weeks, setting up a Nas on a remote location.

    Just for support purchased the ‘“license”’, entire household moved from Google photos to immich. All using wireguard with the ‘include these applications’ option. Gave them access to jellyfin and satellite receiver too, so they are very happy to keep it up and running. No complaints, immich works great.


  • I totally agree with you, the wording could be more clear.

    Reading this: we have enabled a way for you to financially support the continued development of Immich, ensuring the software can move forward and will be maintained, by offering a lifetime license of the software

    Was enough for me to order a server license (…). I like the software and being a professional developer I totally understand you might need funds to do the job.

    So this is just my €0.02 to keep the flow from caffeine to code flowing…









  • Still testing and fiddling, but I’m using the forgejo-runner. Renovate is just another repository, with a workflow to get it started:

    on:
      schedule:
        - cron: '5 2 * * *'
        - cron: '5 14 * * *'
    
    jobs:
      build:
        runs-on: docker
        container:
          image: renovate/renovate:37.140-full
        steps:
          - name: Checkout
            uses: actions/checkout@v3
    
          - name: Run renovate
            env:
              PAT: ${{ secrets.PAT }}
              GITHUB_COM_TOKEN: ${{ secrets.GITHUB }}
            run: |
              echo "Running renovate"
              cd ${GITHUB_WORKSPACE}
              renovate --token ${PAT}          
    

    The renovate image has been pulled by hand and the forgejo-runner will happily start the image. Both PAT and GITHUB secrets are configured as ‘action secrets’ within the renovate repository.

    Besides the workflow, the repository contains renovate.json and config.js, so renovate has the correct configuration.