Compare commits

..

2 commits

Author SHA1 Message Date
39485b67cf [fix] docker-registry folder 2022-11-27 16:04:47 +00:00
216a579715 [mod] tiddly backup 2022-11-27 15:27:26 +00:00
4 changed files with 28 additions and 1 deletions

View file

@ -13,7 +13,7 @@ services:
image: konradkleine/docker-registry-frontend:v2
container_name: docker-registry-ui
ports:
- 8080:80
- 8090:80
environment:
ENV_DOCKER_REGISTRY_HOST: docker-registry
ENV_DOCKER_REGISTRY_PORT: 5000

View file

@ -0,0 +1,8 @@
# .gitignore sample
###################
# Ignore all files in this dir...
*
# ... except for this one.
!.gitignore

1
mermaid-server/readme.md Normal file
View file

@ -0,0 +1 @@
https://github.com/TomWright/mermaid-server

View file

@ -0,0 +1,18 @@
#!/bin/bash
# tiddlywiki server backup management
set -e
DATASTORE=/srv/dev-disk-by-uuid-45e2e732-9e00-4a82-a7cc-9c743e033671/datastore/tiddly/
XU4=root@192.168.1.5:/root/thedocks/tiddlywiki/data/
N2=root@192.168.1.4:/mnt/drive/tiddly
PLUS=root@192.168.1.10:/home/odroid/thedocks/tiddlywiki/data
sync(){
rsync -av --delete $1 $2
}
#echo "XU4 ->DATASTORE"
#sync $XU4 $DATASTORE
echo "DATASTORE ->PLUS"
sync $DATASTORE $PLUS