This image provides Radsecproxy in a Docker container.
All configuration is done by mouting /etc/radsecproxy.conf to a configuration file on the host system.
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.
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'.
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