1
0
mirror of https://gitlab.com/jarylc/docker-duoauthproxy.git synced 2026-02-16 09:46:14 +00:00

simplified examples and updated README.md

This commit is contained in:
Jaryl Chng
2024-04-12 12:49:42 +08:00
parent a71656c1ba
commit 9fdbe53aa9
3 changed files with 8 additions and 3 deletions

View File

@@ -3,6 +3,13 @@
# Volumes # Volumes
- /app/conf/authproxy.cfg - configuration file (https://duo.com/docs/authproxy_reference) - /app/conf/authproxy.cfg - configuration file (https://duo.com/docs/authproxy_reference)
Note: It is recommended to have
```toml
[main]
log_stdout=true
```
if you would like Docker to capture logs.
# Deploying # Deploying
## Terminal ## Terminal
```bash ```bash

View File

@@ -1,8 +1,6 @@
services: services:
lldap: lldap:
image: lldap/lldap:stable image: lldap/lldap:stable
ports:
- "3890:3890"
environment: environment:
- LLDAP_JWT_SECRET=SAMPLE_JWT_SECRET - LLDAP_JWT_SECRET=SAMPLE_JWT_SECRET
- LLDAP_KEY_SEED=SAMPLE_KEY_SEED - LLDAP_KEY_SEED=SAMPLE_KEY_SEED
@@ -12,6 +10,6 @@ services:
ports: ports:
- "1812:1812" - "1812:1812"
volumes: volumes:
- ./conf/authproxy.cfg:/app/conf/authproxy.cfg - ./authproxy.cfg:/app/conf/authproxy.cfg
depends_on: depends_on:
- lldap - lldap