add .env generation from bws, handle build services in deploy
Provision server / provision (push) Successful in 6s

- configure.sh generates .env files from .env.keys + bws
- deploy.sh detects build: services and runs docker compose build
- new-service.sh prints .env.keys instructions
- clean up .gitignore
This commit is contained in:
2026-03-19 12:11:46 -04:00
parent 7e35042b71
commit 3a8fb09bcf
4 changed files with 50 additions and 7 deletions
+4 -3
View File
@@ -1,6 +1,7 @@
containerd/
vultr/
*.swp
docker/**/.env
docker/nginx/data/
docker/nginx/certs/
docker/nginx/certbot/
*.swp
docker/garage/data/
docker/garage/meta/
+33 -1
View File
@@ -2,7 +2,7 @@
set -euo pipefail
# Idempotent server configuration. Safe to run from CI or manually.
# No secrets required — only configures firewall, certbot, and starts services.
# Uses bws to generate .env files for services that need secrets.
REPO_DIR="/opt/hantim"
@@ -56,6 +56,38 @@ for conf in "$REPO_DIR"/docker/nginx/conf.d/*.conf; do
certbot certonly --standalone --non-interactive --agree-tos --register-unsafely-without-email --cert-name "$cert_name" $domain_args
done
echo "==> Generating .env files from Bitwarden Secrets Manager..."
BWS_TOKEN_FILE="/etc/bws-token"
if [ -f "$BWS_TOKEN_FILE" ]; then
export BWS_ACCESS_TOKEN
BWS_ACCESS_TOKEN=$(cat "$BWS_TOKEN_FILE")
ALL_SECRETS=$(bws secret list)
for keys_file in "$REPO_DIR"/docker/*/.env.keys; do
[ -f "$keys_file" ] || continue
app_dir=$(dirname "$keys_file")
app_name=$(basename "$app_dir")
env_content=""
while IFS= read -r line || [ -n "$line" ]; do
[ -z "$line" ] && continue
var_name="${line%%=*}"
secret_key="${line#*=}"
value=$(echo "$ALL_SECRETS" | jq -r --arg key "$secret_key" '.[] | select(.key == $key) | .value')
if [ -z "$value" ]; then
echo " WARNING: Secret '$secret_key' not found in bws, skipping."
continue
fi
env_content="${env_content}${var_name}=${value}"$'\n'
done < "$keys_file"
if [ -n "$env_content" ]; then
echo " Writing .env for $app_name"
printf "%s" "$env_content" > "$app_dir/.env"
chmod 600 "$app_dir/.env"
fi
done
else
echo " No bws token found, skipping .env generation."
fi
echo "==> Starting services..."
# Start nginx first (creates the shared network)
cd "$REPO_DIR/docker/nginx"
+5 -1
View File
@@ -48,9 +48,13 @@ APP="${CMD#deploy-}"
cd /opt/hantim
git pull
cd "docker/$APP"
if ! docker compose pull; then
if grep -q '^\s*build:' compose.yml 2>/dev/null; then
docker compose build
else
if ! docker compose pull; then
echo "Image not yet available for $APP — skipping. It will deploy when the app repo is first pushed."
exit 0
fi
fi
if [ "$APP" = "nginx" ]; then
+6
View File
@@ -64,3 +64,9 @@ OUTER
sed -i "s/APP_PLACEHOLDER/$APP/g" "$REPO_ROOT/.gitea/workflows/deploy-$APP.yml"
echo "Done. Edit docker/$APP/compose.yml, then commit and push."
echo ""
echo "If this service needs secrets:"
echo " 1. Add secrets to Bitwarden Secrets Manager"
echo " 2. Map them in docker/$APP/.env.keys (format: ENV_VAR=bws-secret-name)"
echo " 3. Add env_file: .env to compose.yml"
echo " configure.sh will generate the .env file on the server automatically."