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-16 08:01:35 -05:00
parent 6bde996246
commit 6bfce06ac9

@@ -70,7 +70,7 @@ If you don't already have docker installed, follow the official install instruct
2. Fetch and build the ArchiveBox Docker image: 2. Fetch and build the ArchiveBox Docker image:
```bash ```bash
docker build github.com/pirate/ArchiveBox -t ArchiveBox docker build github.com/pirate/ArchiveBox -t archivebox
``` ```
3. Create a volume to hold your ArchiveBox data: 3. Create a volume to hold your ArchiveBox data:
@@ -82,10 +82,10 @@ docker volume create archivebox-data
To add a list of pages via URL of a feed. To add a list of pages via URL of a feed.
```bash ```bash
docker run -v archivebox-data:/home/chromeuser/app/archivebox/output ArchiveBox 'https://example.com/some/rss/feed.xml' docker run -v archivebox-data:/home/chromeuser/app/archivebox/output archivebox 'https://example.com/some/rss/feed.xml'
``` ```
To add a single link or a list of links from a file, pipe them in via stdin. To add a single link or a list of links from a file, pipe them in via stdin.
```bash ```bash
echo 'https://example.com' | docker run -i -v archivebox-data:/home/chromeuser/app/archivebox/output ArchiveBox echo 'https://example.com' | docker run -i -v archivebox-data:/home/chromeuser/app/archivebox/output archivebox
``` ```