All checks were successful
Build & Push Docker Image / build-and-publish (push) Successful in 11s
20 lines
569 B
YAML
20 lines
569 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
emby-logo-tools:
|
|
image: ghcr.io/sethwv/emby-logo-tools:latest
|
|
# build: . # Uncomment to build locally instead
|
|
container_name: emby-logo-tools
|
|
restart: unless-stopped
|
|
environment:
|
|
- EMBY_SERVER_URL=${EMBY_SERVER_URL}
|
|
- EMBY_API_KEY=${EMBY_API_KEY}
|
|
- MODE=${MODE:-copy}
|
|
- DRY_RUN=${DRY_RUN:-true}
|
|
- FIRST_ONLY=${FIRST_ONLY:-false}
|
|
- FORCE=${FORCE:-false}
|
|
- TAGS=${TAGS:-}
|
|
- CRON_SCHEDULE=${CRON_SCHEDULE:-0 3 * * *}
|
|
- RUN_ONCE=${RUN_ONCE:-false}
|
|
- TZ=${TZ:-UTC}
|