From 2a36937e45148fef8bc2b2ccf8b8a429d57ce879 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20F=C3=A4hrmann?= Date: Tue, 19 Dec 2023 01:53:17 +0100 Subject: [PATCH] add instructions for pulling dockerhub & ghcr images --- README.rst | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index fc43900c..9ecf0aed 100644 --- a/README.rst +++ b/README.rst @@ -142,9 +142,23 @@ Using the Dockerfile in the repository: cd gallery-dl/ docker build -t gallery-dl:latest . +Pulling image from `Docker Hub `__: + +.. code:: bash + + docker pull mikf123/gallery-dl + docker tag mikf123/gallery-dl gallery-dl + +Pulling image from `GitHub Container Registry `__: + +.. code:: bash + + docker pull ghcr.io/mikf/gallery-dl + docker tag ghcr.io/mikf/gallery-dl gallery-dl + To run the container you will probably want to attach some directories on the host so that the config file and downloads can persist across runs. -Make sure to either download the example config file reference in the repo and place it in the mounted volume location or touch an empty file there. +Make sure to either download the example config file reference in the repo and place it in the mounted volume location or touch an empty file there. If you gave the container a different tag or are using podman then make sure you adjust. Run ``docker image ls`` to check the name if you are not sure.