Compare commits
3 Commits
3cf2fe8989
...
b0cb8fd6f6
Author | SHA1 | Date |
---|---|---|
|
b0cb8fd6f6 | |
|
3598ed2987 | |
|
faebad4fab |
|
@ -1,4 +1,4 @@
|
||||||
FROM debian:10
|
FROM debian:11
|
||||||
|
|
||||||
RUN apt update
|
RUN apt update
|
||||||
RUN apt install -y \
|
RUN apt install -y \
|
||||||
|
|
|
@ -3,12 +3,13 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
|
|
||||||
HAPROXY_VERSION=2.9.6
|
HAPROXY_VERSION=3.0.3
|
||||||
HAPROXY_URL=https://www.haproxy.org/download/2.9/src/haproxy-${HAPROXY_VERSION}.tar.gz
|
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_SHA256_URL=${HAPROXY_URL}.sha256
|
||||||
HAPROXY_SRC=/tmp/haproxy
|
HAPROXY_SRC=/tmp/haproxy
|
||||||
|
|
||||||
OPENSSL_VERSION=3.2.1
|
OPENSSL_VERSION=3.3.1
|
||||||
OPENSSL_URL=https://www.openssl.org/source/openssl-${OPENSSL_VERSION}.tar.gz
|
OPENSSL_URL=https://www.openssl.org/source/openssl-${OPENSSL_VERSION}.tar.gz
|
||||||
OPENSSL_SHA256_URL=${OPENSSL_URL}.sha256
|
OPENSSL_SHA256_URL=${OPENSSL_URL}.sha256
|
||||||
OPENSSL_SRC=/tmp/openssl
|
OPENSSL_SRC=/tmp/openssl
|
||||||
|
|
|
@ -26,10 +26,10 @@ all:
|
||||||
Update_Package_Lists: 1
|
Update_Package_Lists: 1
|
||||||
|
|
||||||
# https://hub.docker.com/r/vaultwarden/server/tags
|
# https://hub.docker.com/r/vaultwarden/server/tags
|
||||||
bitwarden_version: 1.30.1-alpine
|
bitwarden_version: 1.32.0-alpine
|
||||||
|
|
||||||
# https://hub.docker.com/r/roundcube/roundcubemail/tags
|
# https://hub.docker.com/r/roundcube/roundcubemail/tags
|
||||||
roudcube_version: 1.6.6-apache
|
roudcube_version: 1.6.8-apache
|
||||||
|
|
||||||
certbot_domains:
|
certbot_domains:
|
||||||
- "jabber.0rpheus.net"
|
- "jabber.0rpheus.net"
|
||||||
|
|
Loading…
Reference in New Issue