*: revert to using GHCR directly
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
parent
b932b6c963
commit
ca314c262c
|
@ -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: goauthentik.io/%(type)s:%(version)s
|
container_image_base: ghcr.io/goauthentik/%(type)s:%(version)s
|
||||||
|
|
||||||
cookie_domain: null
|
cookie_domain: null
|
||||||
disable_update_check: false
|
disable_update_check: false
|
||||||
|
|
|
@ -17,7 +17,7 @@ services:
|
||||||
image: redis:alpine
|
image: redis:alpine
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
server:
|
server:
|
||||||
image: ${AUTHENTIK_IMAGE:-goauthentik.io/server}:${AUTHENTIK_TAG:-2021.12.2}
|
image: ${AUTHENTIK_IMAGE:-ghcr.io/goauthentik/server}:${AUTHENTIK_TAG:-2021.12.2}
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
command: server
|
command: server
|
||||||
environment:
|
environment:
|
||||||
|
@ -38,7 +38,7 @@ services:
|
||||||
- "0.0.0.0:9000:9000"
|
- "0.0.0.0:9000:9000"
|
||||||
- "0.0.0.0:9443:9443"
|
- "0.0.0.0:9443:9443"
|
||||||
worker:
|
worker:
|
||||||
image: ${AUTHENTIK_IMAGE:-goauthentik.io/server}:${AUTHENTIK_TAG:-2021.12.2}
|
image: ${AUTHENTIK_IMAGE:-ghcr.io/goauthentik}:${AUTHENTIK_TAG:-2021.12.2}
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
command: worker
|
command: worker
|
||||||
environment:
|
environment:
|
||||||
|
|
|
@ -17,9 +17,9 @@ If you want to only make changes on the UI, you don't need a backend running fro
|
||||||
3. Add the following entry to your `.env` file:
|
3. Add the following entry to your `.env` file:
|
||||||
|
|
||||||
```
|
```
|
||||||
AUTHENTIK_IMAGE=goauthentik.io/dev-server
|
AUTHENTIK_IMAGE=ghcr.io/goauthentik/dev-server
|
||||||
AUTHENTIK_TAG=gh-next
|
AUTHENTIK_TAG=gh-next
|
||||||
AUTHENTIK_OUTPOSTS__CONTAINER_IMAGE_BASE=goauthentik.io/dev-%(type)s:gh-next
|
AUTHENTIK_OUTPOSTS__CONTAINER_IMAGE_BASE=ghcr.io/goauthentik/dev-%(type)s:gh-next
|
||||||
AUTHENTIK_LOG_LEVEL=debug
|
AUTHENTIK_LOG_LEVEL=debug
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
@ -17,9 +17,9 @@ import TabItem from '@theme/TabItem';
|
||||||
Add the following block to your `.env` file:
|
Add the following block to your `.env` file:
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
AUTHENTIK_IMAGE=goauthentik.io/dev-server
|
AUTHENTIK_IMAGE=ghcr.io/goauthentik/dev-server
|
||||||
AUTHENTIK_TAG=gh-next
|
AUTHENTIK_TAG=gh-next
|
||||||
AUTHENTIK_OUTPOSTS__CONTAINER_IMAGE_BASE=goauthentik.io/dev-%(type)s:gh-next
|
AUTHENTIK_OUTPOSTS__CONTAINER_IMAGE_BASE=ghcr.io/goauthentik/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,9 +30,9 @@ Add the following block to your `values.yml` file:
|
||||||
```yaml
|
```yaml
|
||||||
authentik:
|
authentik:
|
||||||
outposts:
|
outposts:
|
||||||
container_image_base: goauthentik.io/dev-%(type)s:gh-%(build_hash)s
|
container_image_base: ghcr.io/goauthentik/dev-%(type)s:gh-%(build_hash)s
|
||||||
image:
|
image:
|
||||||
repository: goauthentik.io/dev-server
|
repository: ghcr.io/goauthentik/dev-server
|
||||||
tag: gh-next
|
tag: gh-next
|
||||||
# pullPolicy: Always to ensure you always get the latest version
|
# pullPolicy: Always to ensure you always get the latest version
|
||||||
pullPolicy: Always
|
pullPolicy: Always
|
||||||
|
|
|
@ -136,7 +136,7 @@ Disable the inbuilt update-checker. Defaults to `false`.
|
||||||
- `%(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
|
||||||
|
|
||||||
Placeholder for outpost docker images. Default: `goauthentik.io/%(type)s:%(version)s`.
|
Placeholder for outpost docker images. Default: `ghcr.io/goauthentik/%(type)s:%(version)s`.
|
||||||
|
|
||||||
### AUTHENTIK_AVATARS
|
### AUTHENTIK_AVATARS
|
||||||
|
|
||||||
|
|
|
@ -233,6 +233,6 @@ Update your values to use the new images:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
image:
|
image:
|
||||||
repository: goauthentik.io/server
|
repository: ghcr.io/goauthentik/server
|
||||||
tag: 2021.10.1
|
tag: 2021.10.1
|
||||||
```
|
```
|
||||||
|
|
|
@ -191,6 +191,6 @@ Update your values to use the new images:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
image:
|
image:
|
||||||
repository: goauthentik.io/server
|
repository: ghcr.io/goauthentik/server
|
||||||
tag: 2021.12.1-rc1
|
tag: 2021.12.1-rc1
|
||||||
```
|
```
|
||||||
|
|
|
@ -151,6 +151,6 @@ Update your values to use the new images:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
image:
|
image:
|
||||||
repository: goauthentik.io/server
|
repository: ghcr.io/goauthentik/server
|
||||||
tag: 2021.8.5
|
tag: 2021.8.5
|
||||||
```
|
```
|
||||||
|
|
|
@ -206,6 +206,6 @@ Update your values to use the new images:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
image:
|
image:
|
||||||
repository: goauthentik.io/server
|
repository: ghcr.io/goauthentik/server
|
||||||
tag: 2021.9.1
|
tag: 2021.9.1
|
||||||
```
|
```
|
||||||
|
|
Reference in New Issue