mirror of
https://github.com/craigerl/aprsd.git
synced 2024-11-03 15:31:16 -05:00
Hemna
fc3a747aa4
This patch adds 2 new time plugins to allow admins to use their opencagedata APIkey or openweathermap API key to fetch the timezone from the lat/lon GPS coordinates for the callsign requesting the time. This will enable fetching the time local to the ham radio's last beacon, and not time local to the aprsd server instance running. If the location is not found, then the timezone will default to UTC. The 2 new plugins are - aprsd.plugins.time.TimeOpenCageDataPlugin Fetches timezone from lat/lon using the opencagedata api that can be found here: https://opencagedata.com/dashboard#api-keys This requires a new ~/.config/aprsd/aprsd.yml entry to specify the api key. opencagedata: apiKey: <the api key hash here> - aprsd.plugins.time.TimeOWMPlugin Fetches the timezone from lat/lon using the openweathermap api that can be found here: https://home.openweathermap.org/api_keys This requires a new ~/.config/aprsd/aprsd.yml entry to specify the api key. openweathermap: apiKey: <the api key hash here>
43 lines
1019 B
Docker
43 lines
1019 B
Docker
FROM alpine:latest as aprsd
|
|
|
|
ENV VERSION=1.0.0
|
|
ENV APRS_USER=aprs
|
|
ENV HOME=/home/aprs
|
|
ENV VIRTUAL_ENV=$HOME/.venv3
|
|
|
|
ENV INSTALL=$HOME/install
|
|
RUN apk add --update git wget py3-pip py3-virtualenv bash fortune
|
|
|
|
# Setup Timezone
|
|
ENV TZ=US/Eastern
|
|
#RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
|
|
#RUN apt-get install -y tzdata
|
|
#RUN dpkg-reconfigure --frontend noninteractive tzdata
|
|
|
|
|
|
RUN addgroup --gid 1000 $APRS_USER
|
|
RUN adduser -h $HOME -D -u 1001 -G $APRS_USER $APRS_USER
|
|
|
|
ENV LC_ALL=C.UTF-8
|
|
ENV LANG=C.UTF-8
|
|
|
|
USER $APRS_USER
|
|
RUN pip3 install wheel
|
|
RUN python3 -m venv $VIRTUAL_ENV
|
|
ENV PATH="$VIRTUAL_ENV/bin:$PATH"
|
|
RUN echo "export PATH=\$PATH:\$HOME/.local/bin" >> $HOME/.bashrc
|
|
VOLUME ["/config", "/plugins"]
|
|
|
|
WORKDIR $HOME
|
|
RUN pip install aprsd
|
|
USER root
|
|
RUN aprsd sample-config > /config/aprsd.yml
|
|
RUN chown -R $APRS_USER:$APRS_USER /config
|
|
|
|
# override this to run another configuration
|
|
ENV CONF default
|
|
USER $APRS_USER
|
|
|
|
ADD build/bin/run.sh $HOME/
|
|
ENTRYPOINT ["/home/aprs/run.sh"]
|