Processed apps directory via GitHub Actions

This commit is contained in:
QYG2297248353
2025-07-23 06:35:34 +00:00
parent b8f261c099
commit 48f4bbe190
25 changed files with 339 additions and 3 deletions
@@ -0,0 +1,54 @@
networks:
1panel-network:
external: true
services:
archivebox:
container_name: archivebox
env_file:
- ./envs/global.env
- .env
environment:
- TZ=Asia/Shanghai
- ALLOWED_HOSTS=*
- CSRF_TRUSTED_ORIGINS=http://localhost:8000
- SEARCH_BACKEND_ENGINE=sonic
- SEARCH_BACKEND_HOST_NAME=archivebox-sonic
- SEARCH_BACKEND_PASSWORD=${ADMIN_PASSWORD:-}
image: archivebox/archivebox:0.7.3
labels:
createdBy: Apps
networks:
- 1panel-network
ports:
- ${PANEL_APP_PORT_HTTP}:8000
restart: always
volumes:
- ${ARCHIVEBOX_ROOT_PATH}/data:/data
archivebox-scheduler:
command: schedule --foreground --update --every=day
container_name: scheduler-archivebox
env_file:
- ./envs/global.env
- .env
environment:
- TZ=Asia/Shanghai
- TIMEOUT=120
- SEARCH_BACKEND_ENGINE=sonic
- SEARCH_BACKEND_HOST_NAME=archivebox-sonic
- SEARCH_BACKEND_PASSWORD=${ADMIN_PASSWORD:-}
image: archivebox/archivebox:0.7.3
volumes:
- ${ARCHIVEBOX_ROOT_PATH}/data:/data
archivebox-sonic:
container_name: sonic-archivebox
env_file:
- ./envs/global.env
- .env
environment:
- TZ=Asia/Shanghai
- SEARCH_BACKEND_PASSWORD=${ADMIN_PASSWORD:-}
expose:
- 1491
image: archivebox/sonic:latest
volumes:
- ${ARCHIVEBOX_ROOT_PATH}/sonic:/var/lib/sonic/store