Initial commit commit

This commit is contained in:
2023-09-21 16:47:16 +02:00
commit bad31c8a5c
4 changed files with 45 additions and 0 deletions

10
docker_updater.sh Executable file
View File

@@ -0,0 +1,10 @@
#!/usr/bin/env bash
set -e
PROJECT_NAME=$1
COMPOSE_FILE=$2
docker-compose -p $PROJECT_NAME -f $COMPOSE_FILE stop
docker-compose -p $PROJECT_NAME -f $COMPOSE_FILE pull
docker-compose -p $PROJECT_NAME -f $COMPOSE_FILE up -d