Skip to content

bgernert/docker-radsecproxy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Radsecproxy Docker Container

Goal of this image

This image provides Radsecproxy in a Docker container.

Configuration

All configuration is done by mouting /etc/radsecproxy.conf to a configuration file on the host system.

Logging

If running in foreground, Radsecproxy will log all messages to stderr. Set the environment variable RUN_IN_BACKGROUND to "true" to start Radsecproxy in background and enable logging to a file.

Volumes

All Radsecproxy log files should be stored in '/var/log/radsecproxy' (via config file). If you need to provide certificates, you may provide them through '/etc/radsecproxy/certs'.

How to use the image

docker build -t docker-radsecproxy .
docker run -d \
  -v /path/to/certs:/etc/radsecproxy/certs \
  -v /pat/to/config/file:/etc/radsecproxy.conf:ro \
  -v /path/to/logfiles:/var/log/radsecproxy \
  -e RUN_IN_BACKGROUND="false" \
  docker-radsecproxy