Added local web archive
This commit is contained in:
parent
a81e83e16b
commit
686c1d83b2
3 changed files with 21 additions and 0 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
|
@ -19,3 +19,6 @@ dns/dnscrypt/cache/
|
||||||
|
|
||||||
# stirling pdf data
|
# stirling pdf data
|
||||||
stirling-pdf/stirling-data
|
stirling-pdf/stirling-data
|
||||||
|
|
||||||
|
# webarchive db
|
||||||
|
webarchive/db
|
||||||
|
|
|
||||||
1
webarchive/.env
Normal file
1
webarchive/.env
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
THEME=dark
|
||||||
17
webarchive/docker-compose.yaml
Normal file
17
webarchive/docker-compose.yaml
Normal 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"
|
||||||
Loading…
Add table
Reference in a new issue