Move Docker runtime lib dir

This commit is contained in:
Nick Sweeting 2026-05-23 15:44:03 -07:00
parent a36cf7e86f
commit 5f69ec656d
No known key found for this signature in database
4 changed files with 4 additions and 4 deletions

View File

@ -80,7 +80,7 @@ ENV ARCHIVEBOX_USER="archivebox" \
# ArchiveBox Source Code + Lib + Data paths
ENV CODE_DIR=/app \
DATA_DIR=/data \
LIB_DIR=/usr/local/share/archivebox/lib \
LIB_DIR=/opt/archivebox/lib \
PLAYWRIGHT_BROWSERS_PATH=/browsers
# Bash SHELL config

View File

@ -30,7 +30,7 @@ ulimit -c 0 >/dev/null 2>&1 || true
# Load global invariants (set by Dockerfile during image build time, not intended to be customized by users at runtime)
export DATA_DIR="${DATA_DIR:-/data}"
export TMP_DIR="${TMP_DIR:-/tmp/archivebox}"
export LIB_DIR="${LIB_DIR:-/usr/local/share/archivebox/lib}"
export LIB_DIR="${LIB_DIR:-/opt/archivebox/lib}"
export ARCHIVEBOX_USER="${ARCHIVEBOX_USER:-archivebox}"
# Global default PUID and PGID if data dir is empty and no intended PUID+PGID is set manually by user

View File

@ -1,6 +1,6 @@
{
"name": "archivebox",
"version": "0.9.31rc7",
"version": "0.9.31rc8",
"repository": "github:ArchiveBox/ArchiveBox",
"license": "MIT",
"dependencies": {

View File

@ -1,6 +1,6 @@
[project]
name = "archivebox"
version = "0.9.31rc7"
version = "0.9.31rc8"
requires-python = ">=3.13"
description = "Self-hosted internet archiving solution."
authors = [{name = "Nick Sweeting", email = "pyproject.toml@archivebox.io"}]