On Fri, Oct 20, 2023 at 11:03 AM Andrei Katsuk <steep8@gmail.com> wrote:
Hello! I found on https://wiki.freeradius.org/building/Platforms that Officially supported linux platforms are: CentOS Red Hat Debian Ubuntu Also I found on https://hub.docker.com/r/freeradius/freeradius-server/ that freeradius docker image is based on alpine image. Does it mean that alpine os is also officially supported ?
reading https://hub.docker.com/r/freeradius/freeradius-server " Image variants freeradius/freeradius-server:<version> The de-facto image which should be used unless you know you need another image. It is based on Ubuntu Linux Docker images. freeradius/freeradius-server:<version>-alpine Image based on the Alpine Linux Docker images, which are much smaller than most Linux distributions. To keep the basic size as small as possible, this image does not include libraries for all modules that have been built (especially the languages such as Perl or Python). Therefore these extra libraries will need to be installed with apk add in your own Dockerfile if you intend on using modules that require them. "
Which linux os you suggest to use as the base os for docker image with freeradius ?
" Building Docker images The FreeRADIUS source contains Dockerfiles for several Linux distributions. They are in freeradius-server/scripts/docker/<os_name>. Build an image with $ cd scripts/docker/<os_name> $ docker build . -t freeradius-<os_name> This will download the OS base image, install/build any dependencies as necessary, perform a shallow clone of the FreeRADIUS source and build the server. " -- Fajar