Dockerized version of androidtvbackground
docker-compose.yml file is the preferred way
CRON="0 0 * * *" to have the backgrounds created once a day at midnight. Set to 'False' to not use a schedule. Note that the time inside the container will be your hosts time in UTC.From within your docker-compose.yml directory, run:
docker compose up -d
Alternative install is via docker run command line
It would look something like this, depending on config options that you want:
docker run -d --user 99:100 --name androidtvbackground -v /your/local/path/for/config:/config -v /your/local/path/for/backgrounds:/backgrounds -e PLEX=True -e TMDB=True -e TRAKT=False -e POST_SCRIPT_PY=False -e POST_SCRIPT_SH=True -e CRON="0 0 * * *" ghcr.io/ninthwalker/androidtvbackground:latest
The last install method is to build it yourself locally using the Dockerfile from this repo
docker build . -t androidtvbackgrounddocker run -d --user 99:100 --name androidtvbackground -v /your/local/path/for/config:/config -v /your/local/path/for/backgrounds:/backgrounds -e PLEX=True -e TMDB=True -e TRAKT=False -e POST_SCRIPT_PY=False -e POST_SCRIPT_SH=True -e CRON="0 0 * * *" androidtvbackground
docker start androidtvbackgrounddocker start <name of docker>CRON="0 0 * * *") the docker will stay running and create backgrounds during the schedule you set. If you would rather manually start the docker to create backgrounds, set this to FalsePLEX: True and not plex: TrueContent type
Image
Digest
sha256:0d0c6abba…
Size
37.5 MB
Last updated
over 1 year ago
docker pull ninthwalker/androidtvbackground