Skip to content

Commit

Permalink
add support for TZ
Browse files Browse the repository at this point in the history
  • Loading branch information
iloveicedgreentea committed Jun 2, 2024
1 parent 9725b3f commit c8f6f3d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,16 @@ RUN CGO_ENABLED=0 go build -o /go/bin/app

FROM alpine:20240329

RUN apk add supervisor
RUN apk add --no-cache tzdata supervisor
COPY docker/supervisord.conf /etc/supervisor/conf.d/supervisord.conf
COPY docker/watch.py /watch.py

COPY --from=build /go/bin/app /
COPY ./web /web
EXPOSE 9999

ENV TZ=America/New_York
ENV GIN_MODE=release

# CMD ["/app"]
CMD ["/usr/bin/supervisord", "-c", "/etc/supervisor/conf.d/supervisord.conf"]
1 change: 1 addition & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ You can configure this to only load BEQ profiles, or do everything else besides
2) You must mount a volume to `/data`
3) Configure the application via web ui -> `http://(your-server-ip):9999`
4) Set up your player with the instructions below
5) You can change logging timezone by setting the `TZ` env var to your desired timezone

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

0 comments on commit c8f6f3d

Please sign in to comment.