There was an error while loading. Please reload this page.
how about adding timezone support? (with TIMEZONE env)
like
TIMEZONE=Asia/Seoul
On Dockerfile
apk add tzdata
On start.sh
# Set Timezone if [ ! -z "$TIMEZONE" ]; then cp /usr/share/zoneinfo/${TIMEZONE} /etc/localtime fi