github ArchiveBox/ArchiveBox v0.4.15
v0.4.15: Add support for scheduled archiving in docker

latest releases: v0.8.0-rc, v0.7.2, v0.7.1...
3 years ago
  • 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

Don't miss a new ArchiveBox release

NewReleases is sending notifications on new releases.