initial commit docker-compose files

This commit is contained in:
2023-02-22 00:15:59 +01:00
parent 4c9bf4499f
commit 457159dacf
4 changed files with 264 additions and 0 deletions

7
update.sh Executable file
View File

@@ -0,0 +1,7 @@
#!/bin/bash
start='date'
echo "Running update..."
docker-compose pull
docker-compose --compatibility down && docker-compose --compatibility up -d
end='date'
echo -e "\nScript has reached its end after: " $((end-start)) " seconds"