From bf7da4d3f16006280722dba77b1930507615e975 Mon Sep 17 00:00:00 2001 From: horhik Date: Wed, 1 Sep 2021 00:03:02 +0300 Subject: [PATCH] improve README --- Dockerfile | 2 +- README.md | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3bc5561..2055fa2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,5 +8,5 @@ COPY . /app WORKDIR /app -ENTRYPOINT ["python", "/app/src/main.py", "innubis"] +ENTRYPOINT ["python", "/app/src/main.py"] diff --git a/README.md b/README.md index 33b3c6d..bfe3291 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,13 @@ # Instagram2Mastodon 🐘 -Simple python 🐍 script for crossposting from instagram to mastodon (maybe it could work with pixelfed) - +Simple python 🐍 script for crossposting from instagram to mastodon/pixelfed ## Installing Just clone repo, build a docker container and run it ``` bash git clone https://github.com/horhik/instagram2mastodon cd instagram2mastodon docker build -t YOUR_CONTAINER_NAME . - docker container run -it -v $(pwd):/app I2M_INSTAGRAM_USER I2M_INSTANCE I2M_TOKEN + docker container run -it -v $(pwd):/app YOUR_CONTAINER_NAME I2M_INSTAGRAM_USER I2M_INSTANCE I2M_TOKEN ```