mirror of
https://github.com/Haxxnet/Compose-Examples
synced 2024-11-27 14:01:15 +00:00
25 lines
567 B
Markdown
25 lines
567 B
Markdown
# References
|
|
|
|
- https://goauthentik.io/docs/installation/
|
|
- https://blog.lrvt.de/authentik-traefik-azure-ad/
|
|
|
|
# Notes
|
|
|
|
Adjust the `.env` file with your private secrets and spawn up the stack:
|
|
|
|
````
|
|
docker compose up -d
|
|
````
|
|
|
|
After spawning up the Authentik stack, you will be greeted by Authentik's login dashboard. However, you have to onboard an admin user first.
|
|
|
|
This is done by visiting the following URL:
|
|
|
|
````
|
|
# with TLS reverse proxy
|
|
https://<hostname>/if/flow/initial-setup/
|
|
|
|
# without TLS reverse proxy
|
|
https://<hostname>:9000/if/flow/initial-setup/
|
|
````
|