Spiegel von
https://github.com/dani-garcia/vaultwarden.git
synchronisiert 2024-11-05 02:28:00 +01:00
19 Zeilen
231 B
Text
19 Zeilen
231 B
Text
|
#!/bin/bash
|
||
|
|
||
|
set -ex
|
||
|
|
||
|
# Print some environment info in case it's useful for troubleshooting.
|
||
|
id
|
||
|
pwd
|
||
|
df -h
|
||
|
env
|
||
|
docker info
|
||
|
docker version
|
||
|
|
||
|
# Install build dependencies.
|
||
|
deps=(
|
||
|
jq
|
||
|
)
|
||
|
apt-get update
|
||
|
apt-get install -y "${deps[@]}"
|