12 lines
338 B
Bash
12 lines
338 B
Bash
#!/bin/zsh
|
|
# Exit immediately if a command exits with a non-zero status.
|
|
set -e
|
|
|
|
echo "--- Starting Docker Secret Management ---"
|
|
# Mount secrets
|
|
export GITEA_POSTGRES_PASSWORD="$(op read 'op://NAxS Homelab/Gitea Postgres credentials/password')"
|
|
|
|
# Bring up container
|
|
docker compose up -d
|
|
|
|
echo "--- Docker Secret Management Complete ---" |