ArchiveBox logo

ArchiveBox

Open source self-hosted web archiving

Alternative to: wayback machine, pocket, instapaper, archive.today


About Versions (33)

v0.4.15

2020-08-18
  • fix a bug where invalid URLs where attempted to be parsed an imported, causing the whole archive process to crash
  • add support for scheduled archiving in docker
docker run -v $PWD:/data archivebox schedule --foreground --every=day --depth=1 'https://getpocket.com/users/USERNAME/feed/all'
# docker-compose.yml

version: '3.7'

services:
  archivebox:
    image: nikisweeting/archivebox:latest
    command: schedule --foreground --every=day --depth=1 'https://getpocket.com/users/USERNAME/feed/all'
    environment:
      - USE_COLOR=True
      - SHOW_PROGRESS=False
    volumes:
      - ./data:/data