Compose-Examples/examples/authentik/README.md

27 lines
581 B
Markdown
Raw Normal View History

2023-09-27 15:50:33 +00:00
# References
- https://goauthentik.io/docs/installation/
2023-09-29 09:54:17 +00:00
- https://blog.lrvt.de/authentik-traefik-azure-ad/
# Notes
2024-09-26 07:47:25 +00:00
Start by creating a new Docker network for separation:
````
docker network create authentik-internal
````
Then 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.
2023-09-29 09:54:17 +00:00
This is done by visiting the following URL:
````
2024-09-11 07:51:03 +00:00
http(s)://<myserver>/if/flow/initial-setup/
2023-09-29 09:54:17 +00:00
````