2021-03-12 17:04:42 +00:00
---
title: Beta versions
---
2022-05-09 19:22:41 +00:00
You can test upcoming authentik versions by switching to the _next_ images. These beta versions supported upgrades from the latest stable version, and have a supported upgrade plan to the next stable version.
2021-03-12 17:04:42 +00:00
2022-05-09 19:22:41 +00:00
import Tabs from "@theme/Tabs";
import TabItem from "@theme/TabItem";
2021-03-12 17:04:42 +00:00
<Tabs
defaultValue="docker-compose"
values={[
{label: 'docker-compose', value: 'docker-compose'},
{label: 'Kubernetes', value: 'kubernetes'},
]}>
<TabItem value="docker-compose">
Add the following block to your `.env` file:
```shell
2021-12-21 12:54:49 +00:00
AUTHENTIK_IMAGE=ghcr.io/goauthentik/dev-server
2021-03-12 17:04:42 +00:00
AUTHENTIK_TAG=gh-next
2022-07-30 19:22:27 +00:00
AUTHENTIK_OUTPOSTS__CONTAINER_IMAGE_BASE=ghcr.io/goauthentik/dev-%(type)s:gh-%(build_hash)s
2021-03-12 17:04:42 +00:00
```
2021-12-22 22:13:18 +00:00
Afterwards, run the upgrade commands from the latest release notes.
2022-05-09 19:22:41 +00:00
2021-03-12 17:04:42 +00:00
</TabItem>
<TabItem value="kubernetes">
Add the following block to your `values.yml` file:
```yaml
2021-06-09 09:07:02 +00:00
authentik:
2022-05-09 19:22:41 +00:00
outposts:
container_image_base: ghcr.io/goauthentik/dev-%(type)s:gh-%(build_hash)s
2021-03-12 17:04:42 +00:00
image:
2022-05-09 19:22:41 +00:00
repository: ghcr.io/goauthentik/dev-server
tag: gh-next
# pullPolicy: Always to ensure you always get the latest version
pullPolicy: Always
2021-03-12 17:04:42 +00:00
```
2021-12-22 22:13:18 +00:00
Afterwards, run the upgrade commands from the latest release notes.
2022-05-09 19:22:41 +00:00
2021-03-12 17:04:42 +00:00
</TabItem>
</Tabs>