docker-instabot/README.md

33 lines
782 B
Markdown
Raw Normal View History

2018-04-11 10:38:14 +00:00
# Intabot Docker
Docker container for runnning [Instabot](https://github.com/instabot-py/instabot.py).
## Quickstart 💥
2018-04-18 12:01:55 +00:00
```bash
2018-04-11 10:38:14 +00:00
docker-compose up -d
```
## Setup 🏗
2018-04-11 10:41:54 +00:00
```bash
git clone https://github.com/CupCakeArmy/docker-instabot
cd docker-instabot
2018-04-11 13:22:05 +00:00
# Copy or Move sample config.
cp config.sample.json config.json
# Insert own login data and tags.
vim config.json
2018-04-11 10:41:54 +00:00
# Run
docker-compose up -d
2019-01-14 18:42:24 +00:00
```
#### (Optional) Persist the DB 💽
Instabot saved the followers etc. in a sqlite db called `follows_db.db`. If you wish to persist the changes between updates you need to uncomment the line inside `docker-compose.yml` and run `touch data.db` before running `docker-compose up -d`
### Credits
The actual code for the bot is from https://github.com/instabot-py/instabot.py