Added local web archive

This commit is contained in:
Hardik 2026-06-04 03:10:40 +00:00
parent a81e83e16b
commit 686c1d83b2
3 changed files with 21 additions and 0 deletions

3
.gitignore vendored
View file

@ -19,3 +19,6 @@ dns/dnscrypt/cache/
# stirling pdf data
stirling-pdf/stirling-data
# webarchive db
webarchive/db

1
webarchive/.env Normal file
View file

@ -0,0 +1 @@
THEME=dark

View file

@ -0,0 +1,17 @@
version: "3"
services:
webarchive:
image: ghcr.io/shardik99/webarchive:latest
# build:
# dockerfile: ./Dockerfile
# context: .
environment:
LOGGING_DEBUG: "true"
API_ADDRESS: "0.0.0.0:5001"
PDF_DPI: "300"
DB_PATH: "/db"
volumes:
- ./db:/db
ports:
- "0.0.0.0:5001:5001"