2021-03-12 17:04:42 +00:00
---
title: Beta versions
---
2023-01-16 09:44:42 +00:00
You can test upcoming authentik versions by switching to the _next_ images. It is recommended to upgrade to the latest stable release before upgrading to beta images. It is always possible to upgrade from the beta to the next stable release.
:::warning
Downgrading from the Beta is not supported. It is recommended to take a backup before upgrading, or test beta versions on a separate install.
:::
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
```
2023-01-19 20:41:56 +00:00
The beta image is amd64 only. For arm64 platforms, append `-arm64` to the tag name.
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
```
2023-01-19 20:41:56 +00:00
The beta image is amd64 only. For arm64 platforms, append `-arm64` to the tag name.
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>