website/docs: use beta images for dev setup

Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
Jens Langhammer 2021-06-21 22:57:18 +02:00
parent 04e52d8ba6
commit 89edd77484
1 changed files with 8 additions and 5 deletions

View File

@ -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.