services:
minio:
image: quay.io/minio/minio
container_name: minio
ports:
- "127.0.0.1:9200:9000"
- "127.0.0.1:9201:9001"
volumes:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: bookstack | |
services: | |
# The container for BookStack itself | |
bookstack: | |
# You should update the version here to match the latest | |
# release of BookStack: https://github.com/BookStackApp/BookStack/releases | |
# You'll change this when wanting to update the version of BookStack used. | |
image: lscr.io/linuxserver/bookstack:version-v25.02 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
services: | |
ipfs: | |
image: ipfs/kubo:latest | |
container_name: ipfs | |
volumes: | |
- ./ipfs_path:/data/ipfs | |
- ./ipfs_export:/export | |
- ./ipfs_fuse:/ipfs | |
- ./ipns_fuse:/ipns |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
networks: | |
default: | |
attachable: true | |
name: "neko-rooms-net" | |
services: | |
neko-rooms: | |
image: "m1k1o/neko-rooms:latest" | |
restart: "unless-stopped" | |
environment: |
docker run --rm guacamole/guacamole /opt/guacamole/bin/initdb.sh --postgresql > initdb.sql
docker compose up -d postgres
docker logs -f guacamole-postgres
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const EmlParser = require('eml-parser'); | |
const fs = require('fs'); | |
const path = require('path'); | |
// Define paths | |
const filesPath = 'files'; | |
const resultsPathPrefix = 'results'; | |
const timestamp = new Date().toISOString().replace(/[:]/g, '-').split('.')[0]; | |
const resultsPath = path.join(resultsPathPrefix, timestamp); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const verifyPDF = require('pdf-signature-reader-jpc'); | |
const fs = require('fs'); | |
const path = require('path'); | |
// Define paths | |
const filesPath = 'files'; | |
const resultsPathPrefix = 'results'; | |
const timestamp = new Date().toISOString().replace(/[:]/g, '-').split('.')[0]; | |
const resultsPath = path.join(resultsPathPrefix, timestamp); | |
const verifiedPath = path.join(resultsPath, 'verified'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM docker:27.0 | |
LABEL maintainer="BlueT - Matthew Lien - 練喆明 <[email protected]>" | |
# Docker defaults | |
ENV CRONICLE_VERSION 0.9.73 | |
ENV CRONICLE_base_app_url 'http://localhost:3012' | |
ENV CRONICLE_WebServer__http_port 3012 | |
ENV CRONICLE_WebServer__https_port 443 | |
ENV EDITOR=nano |
NewerOlder