This repository contains Dockerfiles for Blolol's custom FileBot Docker images. A GitHub Action runs daily that rebuilds the images if the base rednoah/filebot image has changed.
ghcr.io/blolol/filebot-watcher
is built fromDockerfile.watcher
and is based onrednoah/filebot:watcher
. It adds jq to the base image to ease JSON manipulation in post-processing scripts used with the amc script's--def exec
option.
To build and push a Docker image locally, you'll need to authenticate with the GitHub Container Registry using a personal access token, then use docker build
:
echo "$GITHUB_TOKEN" | docker login ghcr.io -u $GITHUB_USERNAME --password-stdin
docker build -f Dockerfile.watcher -t ghcr.io/blolol/filebot-watcher:latest --push .