Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions deploy/auto-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ init_setup() {
echo -e " - 2GB RAM (Minimum)"
echo -e " - Root privileges"
echo -e " - Supported systems"
echo -e " - Debian: 11 & 12"
echo -e " - Debian: 11, 12 & 13"
echo -e " - Ubuntu 22.04 & 24.04"
echo -e ${YLW}"\nYou can use -u\--upgrade if you are upgrading from an older version.\n"${NON}
fi
Expand All @@ -269,7 +269,7 @@ init_setup() {

if [[ "$system_id" == "Debian" || "$system_id" == "Ubuntu" ]]; then
case "$system_release" in
22.04 | 24.04 | 11 | 12)
22.04 | 24.04 | 11 | 12 | 13)
if [[ "$1" == "upgrade" ]]; then
report_ok && upgrade_debian
else
Expand All @@ -295,7 +295,7 @@ init_help() {
echo -e " - 2GB RAM (Minimum)"
echo -e " - Root privileges"
echo -e " - Supported systems"
echo -e " - Debian: 11 & 12"
echo -e " - Debian: 11, 12 & 13"
echo -e " - Ubuntu 22.04 & 24.04\n"
echo -e " -i\--install : (default) Install OpenWISP"
echo -e " -u\--upgrade : Change OpenWISP version already setup with this script"
Expand Down
Binary file modified docs/images/auto-install.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion images/openwisp_freeradius/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM freeradius/freeradius-server:3.2.7-alpine

# hadolint ignore=DL3018
RUN apk add --no-cache --update tzdata~=2024b-r1 \
postgresql17-client~=17.5-r0 && \
postgresql17-client~=17.6-r0 && \
rm -rf /var/cache/apk/* /tmp/*

RUN addgroup -S freerad && \
Expand Down
2 changes: 1 addition & 1 deletion images/openwisp_nginx/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM nginx:1.29.0-alpine

RUN apk add --update --no-cache \
openssl~=3.5.1-r0 \
openssl~=3.5.2-r0 \
py3-pip~=25.1.1-r0 \
certbot~=4.0.0-r0 \
certbot-nginx~=4.0.0-r1 && \
Expand Down
4 changes: 2 additions & 2 deletions images/openwisp_postfix/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ FROM alpine:3.22

WORKDIR /opt/openwisp/
RUN apk add --no-cache --upgrade \
openssl~=3.5.1-r0 \
openssl~=3.5.2-r0 \
cyrus-sasl~=2.1.28-r8 \
cyrus-sasl-login~=2.1.28-r8 && \
apk add --no-cache \
postfix~=3.10.3-r0 \
postfix~=3.10.4-r0 \
rsyslog~=8.2410.0-r1 \
tzdata~=2025b-r0 && \
rm -rf /tmp/* /var/cache/apk/*
Expand Down