Skip to content

Commit c8f6f3d

Browse files
add support for TZ
1 parent 9725b3f commit c8f6f3d

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

Dockerfile

+4-1
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,16 @@ RUN CGO_ENABLED=0 go build -o /go/bin/app
1010

1111
FROM alpine:20240329
1212

13-
RUN apk add supervisor
13+
RUN apk add --no-cache tzdata supervisor
1414
COPY docker/supervisord.conf /etc/supervisor/conf.d/supervisord.conf
1515
COPY docker/watch.py /watch.py
1616

1717
COPY --from=build /go/bin/app /
1818
COPY ./web /web
1919
EXPOSE 9999
2020

21+
ENV TZ=America/New_York
22+
ENV GIN_MODE=release
23+
2124
# CMD ["/app"]
2225
CMD ["/usr/bin/supervisord", "-c", "/etc/supervisor/conf.d/supervisord.conf"]

readme.md

+1
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ You can configure this to only load BEQ profiles, or do everything else besides
7777
2) You must mount a volume to `/data`
7878
3) Configure the application via web ui -> `http://(your-server-ip):9999`
7979
4) Set up your player with the instructions below
80+
5) You can change logging timezone by setting the `TZ` env var to your desired timezone
8081

8182
### Plex Specifics
8283
1) get your player UUID(s) from `https://plex.tv/devices.xml` while logged in

0 commit comments

Comments
 (0)