Compare commits

...
Sign in to create a new pull request.

2 commits
main ... docker

Author SHA1 Message Date
5c8f6b563a
Added basic, untested Dockerfile
This will be the basis for the docker support. I haven't
gotten it working yet as I need to make some other changes to
the script. Should this be kept as a separate branch...?
2025-03-05 17:30:36 -05:00
140098507a
Trying to detect systemd service
If the systemd service didn't launch us, then simply loop
forever with a 15 minute sleep in between each loop. This will
make it easier to integrate into Docker, which I'm trying to
make a supported configuration.

I still think running via systemd unit & timer is a better
method, and docker images might actually have systemd inside
depending on the image base? If so, then we'll simply put
a pre-made systemd service and timer unit in the Dockerfile and
then automatically install them upon launch.
2025-03-05 17:27:01 -05:00
2 changed files with 19 additions and 1 deletions

10
Dockerfile Normal file
View file

@ -0,0 +1,10 @@
FROM python:3.13.2-alpine3.21
WORKDIR /usr/src/app
COPY discorss.py ./
COPY discorss.conf /etc/
RUN pip install --no-cache-dir requests feedparser
CMD [ "python", "discorss.py" ]

View file

@ -210,4 +210,12 @@ def main():
if __name__ == "__main__":
if os.environ["INVOCATION_ID"]:
main()
else:
try:
while True:
main()
time.sleep(15 * 60)
except KeyboardInterrupt:
exit(0)