diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -29,3 +29,21 @@ Nextcloud. nextcloud instance. * `NEXTCLOUD_PATH`: root folder for where all the images will be saved. + + +# Running as docker container + +To run as docker you need to pass all the environment variables listed above: + +```BASH +docker run -d --rm \ + -e CLIENT_ID=$CLIENT_ID \ + -e CLIENT_SECRETE=$CLIENT_SECRET \ + -e REDDIT_USERNAME=$REDDIT_USERNAME \ + -e REDDIT_PASSWORD=$REDDIT_PASSWORD \ + -e NEXTCLOUD_HOST=$REDDIT_HOST \ + -e NEXTCLOUD_USERNAME=$NEXTCLOUD_USERNAME \ + -e NEXTCLOUD_PASSWORD=$NEXTCLOUD_PASSWORD \ + -e NEXTCLOUD_PATH=$NEXTCLOUD_PATH \ + registry.gitlab.com/gabrielgio/reddit-nextcloud-importer:latest +``` |