Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
60 changes: 60 additions & 0 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
name: Docker

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.

on:
push:
branches: [ master ]
# Publish semver tags as releases.
tags: [ 'v*.*.*' ]
workflow_dispatch:

env:
# Use docker.io for Docker Hub if empty
REGISTRY: ghcr.io
# github.repository as <account>/<repo>
IMAGE_NAME: ${{ github.repository }}


jobs:
build:

runs-on: ubuntu-latest
permissions:
contents: read
packages: write

steps:
- name: Checkout repository
uses: actions/checkout@v2

# Login against a Docker registry except on PR
# https://github.com/docker/login-action
- name: Log into registry ${{ env.REGISTRY }}
if: github.event_name != 'pull_request'
uses: docker/login-action@28218f9b04b4f3f62068d7b6ce6ca5b26e35336c
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

# Extract metadata (tags, labels) for Docker
# https://github.com/docker/metadata-action
- name: Extract Docker metadata
id: meta
uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}

# Build and push Docker image with Buildx (don't push on PR)
# https://github.com/docker/build-push-action
- name: Build and push Docker image
uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
FROM python:3-alpine

RUN pip install --upgrade pip
RUN pip3 install instaloader==4.8.1
RUN pip3 install instaloader

RUN mkdir /download

WORKDIR /download

ENV SLEEP_DURATION=""

ADD run_instaloader.sh /run_instaloader.sh
RUN chmod +x /run_instaloader.sh
CMD /run_instaloader.sh /il_args.txt /il_targets.txt
CMD /run_instaloader.sh /il_args.txt /il_targets.txt ${SLEEP_DURATION}
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,16 @@ user_2
[etc]
```

Decide if you would like the container to run continuously or only once. If you would like the container to keep re-running then set a `SLEEP_DURATION` environment variable with a value of the number of seconds to wait between the last run finishing and the next run starting.

Then you can run a new container, passing those files to it:

```
docker run --name instaloader -it \
-v $(pwd)\download:/download
-v $(pwd)\il_args.txt:/il_args.txt
-v $(pwd)\il_targets.txt:/il_targets.txt
-e "SLEEP_DURATION=3600"
didc/docker-instaloader
```

Expand Down
14 changes: 13 additions & 1 deletion run_instaloader.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,16 @@ args="$(cat "$1" | xargs)"

targets="$(cat "$2" | xargs)"

instaloader $args $targets
while [ 1 ]
do
echo "starting instaloader run"
instaloader $args $targets

if [[ -z "${SLEEP_DURATION}" ]]; then
echo "single run complete"
break
else
echo "sleeping for ${SLEEP_DURATION} seconds"
sleep "${SLEEP_DURATION}"
fi
done