-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.final.yml
More file actions
executable file
·25 lines (24 loc) · 944 Bytes
/
docker-compose.final.yml
File metadata and controls
executable file
·25 lines (24 loc) · 944 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
services:
revproxauth:
image: okigan/revproxauth:latest # Use pre-built image from Docker Hub
# For local development, uncomment the build section below and comment out the image line:
# build:
# context: .
# dockerfile: Dockerfile
restart: unless-stopped
environment:
RADIUS_SERVER: 192.168.10.12 # Change to your RADIUS server IP
# If RADIUS is on the Docker host, use: 172.17.0.1
RADIUS_SECRET: auth-proxy-secret1 # Change to your RADIUS shared secret
RADIUS_PORT: 1812
RADIUS_NAS_IDENTIFIER: revproxauth
LOGIN_DOMAIN: yourserver.com
REVPROXAUTH_ADMIN_USERS: admin,user1 # Comma-separated admin users (optional)
ports:
- "9000:9000"
volumes:
- revproxauth_config:/app/config # Persistent config storage
- /etc/localtime:/etc/localtime:ro
volumes:
revproxauth_config:
driver: local