2021-03-12 17:04:42 +00:00
---
title: Beta versions
---
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.
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
<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-10-11 12:08:34 +00:00
AUTHENTIK_IMAGE=goauthentik.io/dev-server
2021-03-12 17:04:42 +00:00
AUTHENTIK_TAG=gh-next
2021-11-15 14:58:04 +00:00
AUTHENTIK_OUTPOSTS__CONTAINER_IMAGE_BASE=goauthentik.io/dev-%(type)s:gh-next
2021-03-12 17:04:42 +00:00
```
2021-04-10 18:58:55 +00:00
Afterwards, run the upgrade commands from the latest releasae notes.
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:
outposts:
2021-11-15 14:58:04 +00:00
container_image_base: goauthentik.io/dev-%(type)s:gh-%(build_hash)s
2021-03-12 17:04:42 +00:00
image:
2021-10-11 12:08:34 +00:00
repository: goauthentik.io/dev-server
2021-03-12 17:04:42 +00:00
tag: gh-next
# pullPolicy: Always to ensure you always get the latest version
pullPolicy: Always
```
2021-04-10 18:58:55 +00:00
Afterwards, run the upgrade commands from the latest releasae notes.
2021-03-12 17:04:42 +00:00
</TabItem>
</Tabs>