1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-04 20:50:21 -05:00

Shim DevContainer and local

This commit is contained in:
Justin Baur 2025-03-21 16:51:02 -04:00
parent 1a2fff7d65
commit 64e2b85e8c
No known key found for this signature in database

View File

@ -3,9 +3,15 @@ if [[ -z "${CODESPACES}" ]]; then
if [[ -z "${HOSTNAME}" ]]; then
# Add docker compose profile using local strategy
echo "Locally"
# No need to patch it into another compose project when ran locally
docker compose --profile "$1" up -d
else
# Add docker compose profile to dev container
# Is this definitely always the same thing as codespaces?
echo "In DevContainer"
source_dir="$( dirname "${BASH_SOURCE[0]}")"
echo $source_dir
docker compose -p bitwarden_common --profile "$1" -f "${source_dir}/docker-compose.yml" up -d
fi
else
# Add docker compose profile to codespace