1
0
Fork 0
mirror of synced 2024-06-02 02:25:20 +12:00
ArchiveBox/docker-compose.yml

91 lines
2.9 KiB
YAML
Raw Normal View History

# Usage:
# docker-compose up -d
2020-07-29 08:15:09 +12:00
# docker-compose run archivebox init
2020-06-26 13:30:29 +12:00
# echo "https://example.com" | docker-compose run archivebox archivebox add
2020-07-29 08:14:54 +12:00
# docker-compose run archivebox add --depth=1 https://example.com/some/feed.rss
# docker-compose run archivebox config --set PUBLIC_INDEX=True
# Documentation:
2020-11-23 20:04:39 +13:00
# https://github.com/ArchiveBox/ArchiveBox/wiki/Docker#docker-compose
2020-06-26 09:46:11 +12:00
version: '3.7'
2019-01-17 03:20:15 +13:00
services:
archivebox:
2020-07-29 00:14:50 +12:00
# build: .
image: ${DOCKER_IMAGE:-archivebox/archivebox:latest}
2020-06-26 13:30:29 +12:00
command: server 0.0.0.0:8000
2019-01-17 03:20:15 +13:00
stdin_open: true
tty: true
2020-07-22 04:16:29 +12:00
ports:
- 8000:8000
2019-01-17 03:20:15 +13:00
environment:
2020-06-26 09:46:11 +12:00
- USE_COLOR=True
2019-01-17 03:20:15 +13:00
- SHOW_PROGRESS=False
2020-12-08 07:22:09 +13:00
- SEARCH_BACKEND_ENGINE=sonic
2020-12-08 08:39:49 +13:00
- SEARCH_BACKEND_HOST_NAME=sonic
2019-01-17 03:20:15 +13:00
volumes:
- ./data:/data
depends_on:
- sonic
2020-11-21 04:29:28 +13:00
2020-12-08 07:22:09 +13:00
# Run sonic search backend
sonic:
image: valeriansaliou/sonic:v1.3.0
ports:
- 1491:1491
environment:
- SEARCH_BACKEND_PASSWORD=SecretPassword
volumes:
- ./etc/sonic/config.cfg:/etc/sonic.cfg
- ./data:/var/lib/sonic/store/
# Optional Addons: tweak these examples as needed for your specific use case
# Example: Run scheduled imports in a docker instead of using cron on the
# host machine, add tasks and see more info with archivebox schedule --help
# scheduler:
# image: archivebox/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
# Example: Put Nginx in front of the ArchiveBox server for SSL termination
# nginx:
# image: nginx:alpine
# ports:
# - 443:443
# - 80:80
# volumes:
# - ./etc/nginx/nginx.conf:/etc/nginx/nginx.conf
# - ./data:/var/www
# Example: run all your ArchiveBox traffic through a WireGuard VPN tunnel
# wireguard:
# image: linuxserver/wireguard
# network_mode: 'service:archivebox'
# cap_add:
# - NET_ADMIN
# - SYS_MODULE
# sysctls:
# - net.ipv4.conf.all.rp_filter=2
# - net.ipv4.conf.all.src_valid_mark=1
# volumes:
# - /lib/modules:/lib/modules
# - ./wireguard.conf:/config/wg0.conf:ro
# Example: Run PYWB in parallel and auto-import WARCs from ArchiveBox
# pywb:
# image: webrecorder/pywb:latest
# entrypoint: /bin/sh 'wb-manager add default /archivebox/archive/*/warc/*.warc.gz; wayback --proxy;'
# environment:
# - INIT_COLLECTION=archivebox
# ports:
# - 8080:8080
# volumes:
# ./data:/archivebox
# ./data/wayback:/webarchive
2020-12-08 07:22:09 +13:00