Skip to content

networklessons/docker-alpine-freeradius

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

About

A small image that runs freeradius on Alpine. You can find the image on docker hub.

How to use

Configure the clients.conf and users files before you start the container. You can find examples in the repository.

Docker run

docker run \
-p 1812:1812 \
-p 1813:1813 \
-v /home/vmware/docker-alpine-freeradius/clients.conf:/etc/raddb/clients.conf \
-v /home/vmware/docker-alpine-freeradius/users:/etc/raddb/users \
--name freeradius \
networklessons/docker-alpine-freeradius

Docker-compose

version: '2'
services:
 freeradius:
  image: networklessons/docker-alpine-freeradius
  ports:
   - 1812:1812/udp
   - 1813:1813/udp
  volumes:
   - "./clients.conf:/etc/raddb/clients.conf"
   - "./users:/etc/raddb/users"

Kubernetes

You can find the deployment, config-maps, and services to run this container in the kubernetes folder of the repository.

About

Freeradius on Docker Alpine

Resources

Stars

Watchers

Forks

Packages

 
 
 

Contributors