website/docs: remove deprecated docker_image_base
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
parent
1a9ace6f9d
commit
c43049a981
|
@ -64,7 +64,7 @@ outposts:
|
||||||
# %(type)s: Outpost type; proxy, ldap, etc
|
# %(type)s: Outpost type; proxy, ldap, etc
|
||||||
# %(version)s: Current version; 2021.4.1
|
# %(version)s: Current version; 2021.4.1
|
||||||
# %(build_hash)s: Build hash if you're running a beta version
|
# %(build_hash)s: Build hash if you're running a beta version
|
||||||
container_image_base: env://AUTHENTIK_OUTPOSTS__DOCKER_IMAGE_BASE?goauthentik.io/%(type)s:%(version)s
|
container_image_base: goauthentik.io/%(type)s:%(version)s
|
||||||
|
|
||||||
cookie_domain: null
|
cookie_domain: null
|
||||||
disable_update_check: false
|
disable_update_check: false
|
||||||
|
|
|
@ -19,7 +19,7 @@ If you want to only make changes on the UI, you don't need a backend running fro
|
||||||
```
|
```
|
||||||
AUTHENTIK_IMAGE=goauthentik.io/dev-server
|
AUTHENTIK_IMAGE=goauthentik.io/dev-server
|
||||||
AUTHENTIK_TAG=gh-next
|
AUTHENTIK_TAG=gh-next
|
||||||
AUTHENTIK_OUTPOSTS__DOCKER_IMAGE_BASE=goauthentik.io/dev-%(type)s:gh-next
|
AUTHENTIK_OUTPOSTS__CONTAINER_IMAGE_BASE=goauthentik.io/dev-%(type)s:gh-next
|
||||||
AUTHENTIK_LOG_LEVEL=debug
|
AUTHENTIK_LOG_LEVEL=debug
|
||||||
AUTHENTIK_WEB_LOAD_LOCAL_FILES=true
|
AUTHENTIK_WEB_LOAD_LOCAL_FILES=true
|
||||||
```
|
```
|
||||||
|
|
|
@ -19,7 +19,7 @@ Add the following block to your `.env` file:
|
||||||
```shell
|
```shell
|
||||||
AUTHENTIK_IMAGE=goauthentik.io/dev-server
|
AUTHENTIK_IMAGE=goauthentik.io/dev-server
|
||||||
AUTHENTIK_TAG=gh-next
|
AUTHENTIK_TAG=gh-next
|
||||||
AUTHENTIK_OUTPOSTS__DOCKER_IMAGE_BASE=goauthentik.io/dev-%(type)s:gh-next
|
AUTHENTIK_OUTPOSTS__CONTAINER_IMAGE_BASE=goauthentik.io/dev-%(type)s:gh-next
|
||||||
```
|
```
|
||||||
|
|
||||||
Afterwards, run the upgrade commands from the latest releasae notes.
|
Afterwards, run the upgrade commands from the latest releasae notes.
|
||||||
|
@ -30,7 +30,7 @@ Add the following block to your `values.yml` file:
|
||||||
```yaml
|
```yaml
|
||||||
authentik:
|
authentik:
|
||||||
outposts:
|
outposts:
|
||||||
docker_image_base: goauthentik.io/dev-%(type)s:gh-%(build_hash)s
|
container_image_base: goauthentik.io/dev-%(type)s:gh-%(build_hash)s
|
||||||
image:
|
image:
|
||||||
repository: goauthentik.io/dev-server
|
repository: goauthentik.io/dev-server
|
||||||
tag: gh-next
|
tag: gh-next
|
||||||
|
|
|
@ -126,7 +126,7 @@ Disable the inbuilt update-checker. Defaults to `false`.
|
||||||
|
|
||||||
### AUTHENTIK_OUTPOSTS
|
### AUTHENTIK_OUTPOSTS
|
||||||
|
|
||||||
- `AUTHENTIK_OUTPOSTS__DOCKER_IMAGE_BASE`
|
- `AUTHENTIK_OUTPOSTS__CONTAINER_IMAGE_BASE`
|
||||||
|
|
||||||
Placeholders:
|
Placeholders:
|
||||||
- `%(type)s`: Outpost type; proxy, ldap, etc
|
- `%(type)s`: Outpost type; proxy, ldap, etc
|
||||||
|
|
Reference in New Issue