From 1e7d0b5a9ada87eb86cbf0c2962481a75a86fe6e Mon Sep 17 00:00:00 2001 From: Aetherinox Date: Sun, 1 Dec 2024 03:39:45 -0700 Subject: [PATCH] docs: update readme docker example --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 20b8725d..fb4c4e01 100644 --- a/README.md +++ b/README.md @@ -87,14 +87,14 @@ Create a new `docker-compose.yml` with the following: services: thetvapp: container_name: thetvapp - image: thetvapp:latest + image: ghcr.io/aetherinox/thetvapp-docker:latest restart: unless-stopped volumes: - ./thetvapp:/config environment: - - PUID=${PUID:-1000} - - PGID=${PGID:-1000} - - TZ=${SERVER_TIMEZONE} + - PUID=1000 + - PGID=1000 + - TZ=America/Los_Angeles - CRON_TIME=*/60 * * * * ```