From 89edd7748403f6f591c0e51873ac31d4b2f2948b Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Mon, 21 Jun 2021 22:57:18 +0200 Subject: [PATCH] website/docs: use beta images for dev setup Signed-off-by: Jens Langhammer --- .../developer-docs/frontend-only-dev-environment.md | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/website/developer-docs/frontend-only-dev-environment.md b/website/developer-docs/frontend-only-dev-environment.md index 5a5c42f6a..872c24b59 100644 --- a/website/developer-docs/frontend-only-dev-environment.md +++ b/website/developer-docs/frontend-only-dev-environment.md @@ -10,9 +10,12 @@ If you want to only make changes on the UI, you don't need a backend running fro ``` AUTHENTIK_WEB__LOAD_LOCAL_FILES=true + AUTHENTIK_IMAGE=beryju.org/authentik/server + AUTHENTIK_TAG=gh-next + AUTHENTIK_OUTPOSTS__DOCKER_IMAGE_BASE=beryju.org/authentik/outpost-%(type)s:gh-next ``` - This will cause authentik to load static files from a folder and ignore the bundeled files. + This will cause authentik to load static files from a folder and ignore the bundeled files. Also the beta image is used. 4. Add this volume mapping to your compose file @@ -20,11 +23,11 @@ If you want to only make changes on the UI, you don't need a backend running fro version: '3.2' services: + # [...] + server: # [...] - server: - # [...] - volumes: - - ./web:/web + volumes: + - ./web:/web ``` This makes the local web files available to the authentik server.