Docker container for running Instabot
Go to file
cupcakearmy 3b2e8c8d95 Default DB and session name 2019-02-16 16:25:26 +01:00
.gitignore Default DB and session name 2019-02-16 16:25:26 +01:00
Dockerfile clean buidl 2019-02-16 15:44:18 +01:00
LICENSE Initial commit 2018-04-11 12:33:03 +02:00
README.md clean buidl 2019-02-16 15:44:18 +01:00
app.py Default DB and session name 2019-02-16 16:25:26 +01:00
config.sample.json Sample Config 2018-04-11 15:20:14 +02:00
data.db clean buidl 2019-02-16 15:44:18 +01:00
docker-compose.yml Default DB and session name 2019-02-16 16:25:26 +01:00

README.md

Intabot Docker

Docker container for runnning Instabot.

Quickstart 💥

docker-compose up -d

Setup 🏗

git clone https://github.com/CupCakeArmy/docker-instabot
cd docker-instabot

# Copy or Move sample config.
cp config.sample.json config.json
# Insert own login data and tags.
vim config.json

# Run
docker-compose up -d

(Default) Persist the DB 💽

By default the DB is persisted. Instabot saved the followers etc. in a sqlite db called follows_db.db. To start with a clean state you need to delete the data.db file. Either run rm data.db; touch data.db or cat /dev/null > data.db.

Credits

The actual code for the bot is from https://github.com/instabot-py/instabot.py