Compare commits
5 Commits
3cf2fe8989
...
master
Author | SHA1 | Date | |
---|---|---|---|
|
26bd19b4ea | ||
|
4ec284b122 | ||
|
b0cb8fd6f6 | ||
|
3598ed2987 | ||
|
faebad4fab |
@@ -1,4 +1,4 @@
|
||||
FROM debian:10
|
||||
FROM debian:11
|
||||
|
||||
RUN apt update
|
||||
RUN apt install -y \
|
||||
|
@@ -3,15 +3,17 @@
|
||||
set -e
|
||||
|
||||
|
||||
HAPROXY_VERSION=2.9.6
|
||||
HAPROXY_URL=https://www.haproxy.org/download/2.9/src/haproxy-${HAPROXY_VERSION}.tar.gz
|
||||
HAPROXY_VERSION=3.0.5
|
||||
HAPROXY_VERSION_SHORT=$(echo "$HAPROXY_VERSION" | cut -d. -f1-2)
|
||||
HAPROXY_URL=https://www.haproxy.org/download/${HAPROXY_VERSION_SHORT}/src/haproxy-${HAPROXY_VERSION}.tar.gz
|
||||
HAPROXY_SHA256_URL=${HAPROXY_URL}.sha256
|
||||
HAPROXY_SRC=/tmp/haproxy
|
||||
|
||||
OPENSSL_VERSION=3.2.1
|
||||
OPENSSL_URL=https://www.openssl.org/source/openssl-${OPENSSL_VERSION}.tar.gz
|
||||
OPENSSL_VERSION=3.4.0
|
||||
OPENSSL_URL=https://github.com/openssl/openssl/releases/download/openssl-${OPENSSL_VERSION}/openssl-${OPENSSL_VERSION}.tar.gz
|
||||
OPENSSL_SHA256_URL=${OPENSSL_URL}.sha256
|
||||
OPENSSL_SRC=/tmp/openssl
|
||||
OPENSSL_FILE=${OPENSSL_URL##*/}
|
||||
|
||||
[ -d "$OPENSSL_SRC" ] && rm -rf "$OPENSSL_SRC"
|
||||
[ -d "$HAPROXY_SRC" ] && rm -rf "$HAPROXY_SRC"
|
||||
@@ -20,12 +22,13 @@ OPENSSL_SRC=/tmp/openssl
|
||||
# build openssl
|
||||
#
|
||||
OPENSSL_SHA256=$(wget -O - "$OPENSSL_SHA256_URL")
|
||||
wget -O openssl.tar.gz "$OPENSSL_URL"
|
||||
echo "$OPENSSL_SHA256 *openssl.tar.gz" | sha256sum -c
|
||||
echo $OPENSSL_SHA256
|
||||
wget -O "$OPENSSL_FILE" "$OPENSSL_URL"
|
||||
echo "$OPENSSL_SHA256" | sha256sum -c
|
||||
|
||||
mkdir -p "$OPENSSL_SRC"
|
||||
tar xfz openssl.tar.gz -C "$OPENSSL_SRC" --strip-components=1
|
||||
rm openssl.tar.gz
|
||||
tar xfz "$OPENSSL_FILE" -C "$OPENSSL_SRC" --strip-components=1
|
||||
rm "$OPENSSL_FILE"
|
||||
|
||||
pushd "$OPENSSL_SRC"
|
||||
./config --prefix="$OPENSSL_SRC" no-ssl3 no-idea no-weak-ssl-ciphers no-shared
|
||||
|
@@ -26,10 +26,10 @@ all:
|
||||
Update_Package_Lists: 1
|
||||
|
||||
# https://hub.docker.com/r/vaultwarden/server/tags
|
||||
bitwarden_version: 1.30.1-alpine
|
||||
bitwarden_version: 1.32.3-alpine
|
||||
|
||||
# https://hub.docker.com/r/roundcube/roundcubemail/tags
|
||||
roudcube_version: 1.6.6-apache
|
||||
roudcube_version: 1.6.9-apache
|
||||
|
||||
certbot_domains:
|
||||
- "jabber.0rpheus.net"
|
||||
|
Reference in New Issue
Block a user