Skip to content

Commit

Permalink
added apprise - fix timezone (#190)
Browse files Browse the repository at this point in the history
Co-authored-by: gOOvER <[email protected]>
  • Loading branch information
gOOvER and gOOvER authored Oct 1, 2023
1 parent 1e054e3 commit 37a2c90
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions apps/uptimekuma/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ RUN apk add --no-cache \
libtool \
python3 \
python3-dev \
py3-pip \
sqlite \
tzdata \
zip \
Expand All @@ -38,6 +39,9 @@ RUN if [ "$TARGETPLATFORM" = "linux/amd64" ]; then ARCHITECTURE=amd64; e
&& curl -L https://github.com/cloudflare/cloudflared/releases/latest/download/cloudflared-linux-${ARCHITECTURE} -o /usr/bin/cloudflared
RUN chmod +x /usr/bin/cloudflared

# install apprise
RUN pip install apprise

## Setup user and working directory
RUN adduser -D -h /home/container container -s /bin/bash container
USER container
Expand Down
2 changes: 1 addition & 1 deletion apps/uptimekuma/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ echo -e "${BLUE}-------------------------------------------------${NC}"
echo -e "${RED}Uptime Kuma Image${NC}"
echo -e "${BLUE}-------------------------------------------------${NC}"
echo -e "${YELLOW}Running on Alpine: ${RED} $(cat /etc/alpine-release)${NC}"
echo -e "${YELLOW}Current timezone: ${RED} $(cat /etc/localtime)${NC}"
echo -e "${YELLOW}Current timezone: ${RED} ${TZ} ${NC}"
echo -e "${YELLOW}NodeJS Version: ${RED} $(node -v) ${NC}"
echo -e "${YELLOW}Cloudflared Version: ${RED} $(/usr/bin/cloudflared --version) ${NC}"
echo -e "${BLUE}-------------------------------------------------${NC}"
Expand Down

0 comments on commit 37a2c90

Please sign in to comment.