v0.4.15
版本发布时间: 2020-08-18 14:03:16
ArchiveBox/ArchiveBox最新发布版本:v0.8.4-rc(2024-09-12 07:27:16)
- 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