mirror of
https://github.com/Haxxnet/Compose-Examples
synced 2025-02-17 13:58:12 +00:00
27 lines
581 B
Markdown
27 lines
581 B
Markdown
# References
|
|
|
|
- https://goauthentik.io/docs/installation/
|
|
- https://blog.lrvt.de/authentik-traefik-azure-ad/
|
|
|
|
# Notes
|
|
|
|
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.
|
|
|
|
This is done by visiting the following URL:
|
|
|
|
````
|
|
http(s)://<myserver>/if/flow/initial-setup/
|
|
````
|