1
0
mirror of https://github.com/pirate/ArchiveBox.git synced 2025-08-29 17:19:53 +02:00

Updated Install (markdown)

Nick Sweeting
2019-01-05 15:23:15 -05:00
parent e2a978a31a
commit 158a1129e9

@@ -2,6 +2,22 @@
Run `./bin/setup` to install all dependencies automatically. Run `./bin/setup` to install all dependencies automatically.
## Docker Setup
You can use the new official docker image for ArchiveBox like so:
```bash
docker build github.com/pirate/ArchiveBox -t ArchiveBox
docker volume create archivebox-data
docker run -v archivebox-data:/home/chromeuser/app/archivebox/output ArchiveBox 'https://example.com/some/rss/feed.xml'
```
It's not perfect yet, I still have to make the ergonomics better for passing in link files to parse, right now you have to put them in the output volume and then reference them by their path inside the container to get ArchiveBox to find them:
```bash
docker run -v archivebox-data:/home/chromeuser/app/archiver/output ArchiveBox /home/chromeuser/app/archivebox/output/downloads/path-to-links.json
```
## Manual Setup ## Manual Setup
If you don't like running random setup scripts off the internet (:+1:), you can follow these manual setup instructions. If you don't like running random setup scripts off the internet (:+1:), you can follow these manual setup instructions.