diff --git a/.viminfo b/.viminfo new file mode 100644 index 0000000..82e8630 --- /dev/null +++ b/.viminfo @@ -0,0 +1,69 @@ +# This viminfo file was generated by Vim 8.0. +# You may edit it if you're careful! + +# Viminfo version +|1,4 + +# Value of 'encoding' when this file was written +*encoding=utf-8 + + +# hlsearch on (H) or off (h): +~h +# Command Line History (newest to oldest): +:q +|2,0,1599761890,,"q" + +# Search String History (newest to oldest): + +# Expression History (newest to oldest): + +# Input Line History (newest to oldest): + +# Debug Line History (newest to oldest): + +# Registers: + +# File marks: +'0 1 0 ~/restart.sh +|4,48,1,0,1599761890,"~/restart.sh" +'1 1 0 ~/restart.sh +|4,49,1,0,1599761817,"~/restart.sh" +'2 1 0 ~/restart.sh +|4,50,1,0,1599761501,"~/restart.sh" +'3 1 0 ~/restart.sh +|4,51,1,0,1599761501,"~/restart.sh" +'4 1 0 ~/restart.sh +|4,52,1,0,1599660361,"~/restart.sh" +'5 1 0 ~/restart.sh +|4,53,1,0,1599660361,"~/restart.sh" +'6 1 0 ~/restart.sh +|4,54,1,0,1599660361,"~/restart.sh" +'7 1 0 ~/restart.sh +|4,55,1,0,1599660361,"~/restart.sh" +'8 1 0 ~/restart.sh +|4,56,1,0,1599485736,"~/restart.sh" +'9 1 0 ~/restart.sh +|4,57,1,0,1599485736,"~/restart.sh" + +# Jumplist (newest first): +-' 1 0 ~/restart.sh +|4,39,1,0,1599761890,"~/restart.sh" +-' 1 0 ~/restart.sh +|4,39,1,0,1599761817,"~/restart.sh" +-' 1 0 ~/restart.sh +|4,39,1,0,1599761501,"~/restart.sh" +-' 1 0 ~/restart.sh +|4,39,1,0,1599660361,"~/restart.sh" +-' 1 0 ~/restart.sh +|4,39,1,0,1599485736,"~/restart.sh" +-' 1 0 ~/restart.sh +|4,39,1,0,1599480996,"~/restart.sh" +-' 1 0 ~/restart.sh +|4,39,1,0,1599474185,"~/restart.sh" + +# History of marks within files (newest to oldest): + +> ~/restart.sh + * 1599761887 0 + " 1 0 diff --git a/docker-build.sh b/docker-build.sh new file mode 100755 index 0000000..90ebb57 --- /dev/null +++ b/docker-build.sh @@ -0,0 +1,2 @@ +#!/bin/bash +cd /var/www/tagesschule && git pull && docker-compose build web \ No newline at end of file diff --git a/docker-logs.sh b/docker-logs.sh new file mode 100755 index 0000000..307c2ff --- /dev/null +++ b/docker-logs.sh @@ -0,0 +1,2 @@ +#!/bin/bash +cd /var/www/tagesschule && docker-compose logs --tail=100 -f diff --git a/docker-restart.sh b/docker-restart.sh new file mode 100755 index 0000000..82b7879 --- /dev/null +++ b/docker-restart.sh @@ -0,0 +1,2 @@ +#!/bin/bash +cd /var/www/tagesschule && git pull && docker-compose restart web \ No newline at end of file diff --git a/docker-up.sh b/docker-up.sh new file mode 100755 index 0000000..5f74f85 --- /dev/null +++ b/docker-up.sh @@ -0,0 +1,2 @@ +#!/bin/bash +cd /var/www/tagesschule && docker-compose up \ No newline at end of file diff --git a/docker-update.sh b/docker-update.sh new file mode 100755 index 0000000..9f9e2bd --- /dev/null +++ b/docker-update.sh @@ -0,0 +1,2 @@ +#!/bin/bash +cd /var/www/tagesschule && git pull && docker-compose build web && docker-compose up \ No newline at end of file diff --git a/docker-web-cli.sh b/docker-web-cli.sh new file mode 100755 index 0000000..0e08add --- /dev/null +++ b/docker-web-cli.sh @@ -0,0 +1,2 @@ +#!/bin/bash +cd /var/www/tagesschule && docker-compose exec web bash \ No newline at end of file