mirror of
https://github.com/nickyeoman/docker-compose-cookbooks.git
synced 2026-09-03 18:36:22 +00:00
added archivebox
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
# archivebox
|
||||
|
||||
Last Updated: Thu August 01, 2024 13:30:38 PDT
|
||||
|
||||
## Overview
|
||||
Docker Hub: https://hub.docker.com/r/archivebox/archivebox/tags
|
||||
Docker Compose Example: https://raw.githubusercontent.com/ArchiveBox/ArchiveBox/dev/docker-compose.yml
|
||||
Project: https://archivebox.io/
|
||||
Proxy Port: 8000
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
version: '3.8'
|
||||
|
||||
services:
|
||||
archivebox:
|
||||
image: ${ARCHIVEBOX_IMAGE:-archivebox/archivebox:stable}
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- ${VOL_PATH:-./data}/archive-data:/data
|
||||
environment:
|
||||
- ARCHIVEBOX_UID=1000
|
||||
- ARCHIVEBOX_GID=1000
|
||||
- PYTHONUNBUFFERED=1 # Ensures logs are output in real-time
|
||||
command: server --quick-init 0.0.0.0:8000
|
||||
@@ -0,0 +1,7 @@
|
||||
version: '3.4'
|
||||
|
||||
services:
|
||||
archivebox:
|
||||
extends:
|
||||
file: ${COOKBOOK}/archivebox/docker-compose.yml
|
||||
service: archivebox
|
||||
@@ -0,0 +1,5 @@
|
||||
COOKBOOK=/git/docker-compose-cookbooks #HELP: cookbooks
|
||||
VOL_PATH=./data
|
||||
|
||||
# ARCHIVEBOX
|
||||
ARCHIVEBOX_IMAGE=archivebox/archivebox:sha-1d49bee
|
||||
Reference in New Issue
Block a user