Update root dir to allow to call script from repo root (#2255)

This commit is contained in:
Leendert de Borst
2026-07-12 16:30:18 +02:00
committed by Leendert de Borst
parent b78434516d
commit b341eecb6d

View File

@@ -1,7 +1,7 @@
#!/bin/bash
# Go to root
cd ..
# Go to root directory
cd "$(dirname "$0")/.." || exit 1
# Build the all-in-one docker image
echo "Building all-in-one docker image..."
@@ -23,6 +23,3 @@ docker run -d \
-v ./secrets:/secrets \
-v ./certificates:/certificates \
aliasvault-allinone:local
# Go back to scripts
cd scripts