From f69352cd1b0617b92c7f48492fedb60352339ec9 Mon Sep 17 00:00:00 2001 From: Leon Haag-Fank Date: Wed, 3 Apr 2024 16:12:02 +0200 Subject: [PATCH] Added Dockerfile --- .gitignore | 1 + Dockerfile | 13 +++++++++++++ README.md | 9 +++++++++ docker-compose.yaml | 9 +++++++++ requirements.txt | 1 + 5 files changed, 33 insertions(+) create mode 100644 .gitignore create mode 100644 Dockerfile create mode 100644 docker-compose.yaml create mode 100644 requirements.txt diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4c49bd7 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.env diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..c895440 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,13 @@ +FROM python:3 + +MAINTAINER Leon Haag-Fank "admin@haagfank.de" + +VOLUME /data + +WORKDIR /usr/src/app +COPY zeit-dl requirements.txt ./ +RUN pip install --no-cache-dir -r requirements.txt +RUN playwright install chromium && \ + playwright install-deps chromium + +ENTRYPOINT python ./zeit-dl "$ZEITDL_USER" "$ZEITDL_PASSWORD" -o /data diff --git a/README.md b/README.md index 0f6f0e4..b3b7c31 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,15 @@ playwright install chromium ``` Then you just need to download the [`zeit-dl`](https://git.haagfank.de/LnLcFlx/zeit-dl/raw/branch/master/zeit-dl) file from this repository. +### Docker +Put your credentials and the desired output path in the `.env` file +``` +ZEITDL_USER=youruser +ZEITDL_PASSWORD=yourpassword +ZEITDL_MOUNT=/your/path +``` +and run `docker compose up -d`. + ## Usage If you simply want to download the current issue of Die ZEIT as pdf run ```sh diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..b6595d7 --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,9 @@ +services: + zeitdl: + image: zeitdl + container_name: zeitdl + build: ./ + env_file: + - .env + volumes: + - ${ZEITDL_MOUNT}:/data diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..508a5f4 --- /dev/null +++ b/requirements.txt @@ -0,0 +1 @@ +playwright