Post-Local sync at 2025-06-14T01:20:35Z
This commit is contained in:
@@ -1,8 +0,0 @@
|
||||
#!/bin/bash
|
||||
# Export Trilium notes as markdown
|
||||
docker exec trilium_dev trilium-cli export /home/node/trilium-data /tmp/trilium-export --format markdown
|
||||
# Copy the exported files to a backup directory
|
||||
mkdir -p ./volumes/trilium-backup/export
|
||||
docker cp trilium_dev:/tmp/trilium-export ./volumes/trilium-backup/export
|
||||
# Dump the SQLite database
|
||||
docker exec trilium_dev sqlite3 /home/node/trilium-data/document.db .dump > ./volumes/trilium-backup/document.sql
|
||||
Executable
+4
@@ -0,0 +1,4 @@
|
||||
#!/bin/bash
|
||||
set -e
|
||||
chown -R 33:33 /var/www/html /var/www/html/data
|
||||
exec "$@"
|
||||
+3
-3
@@ -1,6 +1,6 @@
|
||||
#!/bin/bash
|
||||
set -e
|
||||
|
||||
echo "Starting fold-stack development environment (excluding Overleaf CE by default)..."
|
||||
docker compose --env-file .env.dev -f docker-compose.dev.yml up -d --build ghost forgejo radicle pandoc mailhog trilium hedgedoc nextcloud rclone typst git-sync flame_dashboard nginx
|
||||
echo "Core services started. To enable Overleaf CE, run: ./scripts/enable-overleaf.sh"
|
||||
echo "Starting fold-stack development environment..."
|
||||
docker compose --env-file .env.dev -f docker-compose.dev.yml up -d --build ghost forgejo radicle pandoc mailhog hedgedoc rclone typst git-sync
|
||||
echo "Core services started."
|
||||
|
||||
Reference in New Issue
Block a user