1 Commits

Author SHA1 Message Date
Daniel Huisman
fec384f6e7 Start implementing CLI 2018-04-24 16:24:34 +02:00
2 changed files with 4 additions and 1 deletions

View File

@@ -15,4 +15,4 @@ RUN pip3 install -r requirements.txt
COPY . /app
# Define entrypoint of the app
ENTRYPOINT ["python3", "-u", "extractor.py"]
ENTRYPOINT ["python3", "extractor.py"]

View File

@@ -3,6 +3,7 @@ import os
import errno
import time
import json
import argparse
from base64 import b64decode
from watchdog.observers import Observer
from watchdog.events import FileSystemEventHandler
@@ -75,6 +76,8 @@ class Handler(FileSystemEventHandler):
print('Extracted certificate for: ' + c['Domains']['Main'] + (', ' + ', '.join(c['Domains']['SANs']) if c['Domains']['SANs'] else ''))
if __name__ == "__main__":
parser = argparse.ArgumentParser(description='Tool to extract Let\'s Encrypt certificates from Traefik\'s ACME storage file.')
# Determine path to watch
path = sys.argv[1] if len(sys.argv) > 1 else './data'