auf aktuelle esprimo-Version updated

This commit is contained in:
rxf
2023-12-18 17:23:59 +01:00
parent 4f19f9973a
commit 6d1d60a9c1
16 changed files with 102 additions and 964 deletions

19
deploy.sh Executable file
View File

@@ -0,0 +1,19 @@
# Deploy Sensor-Files via esprimo und docker.citysensor.de
# 2023-12-17 rxf
#
# set -x
LINUX='esprimo'
path="/home/rxf/Projekte/Sensors"
name=readin
rsync -avn --exclude=node_modules --exclude=.git --exclude=deploy.sh --exclude=TRANSFERE --exclude=INFLUXSERVER --exclude=data --exclude=log --exclude=.idea --exclude=.vscode --exclude=docs ./ $LINUX:$path/$name
exit 0
ssh $LINUX "cd $path/$name;
./build_and_copy.sh localhost;
docker tag $name docker.citysensor.de/$name;
docker push docker.citysensor.de/$name;"
exit 0