mirror of
https://gitlab.com/jarylc/docker-duoauthproxy.git
synced 2026-02-07 11:03:26 +00:00
Initial commit
This commit is contained in:
27
README.md
Normal file
27
README.md
Normal file
@@ -0,0 +1,27 @@
|
||||
   
|
||||
|
||||
# Volumes
|
||||
- /app/conf/authproxy.cfg - configuration file (https://duo.com/docs/authproxy_reference)
|
||||
|
||||
# Deploying
|
||||
## Terminal
|
||||
```bash
|
||||
docker run -d \
|
||||
--name duoauthproxy \
|
||||
-v /path/to/authproxy.cfg:/app/conf/authproxy.cfg \
|
||||
--restart unless-stopped \
|
||||
minimages/duoauthproxy
|
||||
```
|
||||
## Docker-compose
|
||||
```yml
|
||||
duoauthproxy:
|
||||
image: minimages/duoauthproxy
|
||||
ports:
|
||||
- "1812:1812"
|
||||
volumes:
|
||||
- /path/to/authproxy.cfg:/app/conf/authproxy.cfg
|
||||
restart: unless-stopped
|
||||
```
|
||||
|
||||
## Examples
|
||||
You can visit the [examples folder in this repository](examples) for example deployments.
|
||||
Reference in New Issue
Block a user