diff --git a/tests/e2e/test_provider_proxy.py b/tests/e2e/test_provider_proxy.py index 6ed89ce8d..cdae54b66 100644 --- a/tests/e2e/test_provider_proxy.py +++ b/tests/e2e/test_provider_proxy.py @@ -46,7 +46,7 @@ class TestProviderProxy(SeleniumTestCase): """Start proxy container based on outpost created""" client: DockerClient = from_env() container = client.containers.run( - image=f"beryju/authentik-proxy:{__version__}", + image=f"ghcr.io/goauthentik/proxy:{__version__}", detach=True, network_mode="host", auto_remove=True, diff --git a/website/docs/outposts/manual-deploy-docker-compose.md b/website/docs/outposts/manual-deploy-docker-compose.md index c92b384be..aa13409ca 100644 --- a/website/docs/outposts/manual-deploy-docker-compose.md +++ b/website/docs/outposts/manual-deploy-docker-compose.md @@ -11,7 +11,7 @@ version: "3.5" services: authentik_proxy: - image: beryju/authentik-proxy:2021.5.1 + image: ghcr.io/goauthentik/proxy:2021.5.1 ports: - 4180:4180 - 4443:4443 @@ -19,4 +19,13 @@ services: AUTHENTIK_HOST: https://your-authentik.tld AUTHENTIK_INSECURE: "false" AUTHENTIK_TOKEN: token-generated-by-authentik + # Or, for the LDAP Outpost + authentik_proxy: + image: ghcr.io/goauthentik/ldap:2021.5.1 + ports: + - 389:3389 + environment: + AUTHENTIK_HOST: https://your-authentik.tld + AUTHENTIK_INSECURE: "false" + AUTHENTIK_TOKEN: token-generated-by-authentik ``` diff --git a/website/docs/outposts/manual-deploy-kubernetes.md b/website/docs/outposts/manual-deploy-kubernetes.md index 6731cf08d..e591d7620 100644 --- a/website/docs/outposts/manual-deploy-kubernetes.md +++ b/website/docs/outposts/manual-deploy-kubernetes.md @@ -88,7 +88,7 @@ spec: secretKeyRef: key: authentik_host_insecure name: authentik-outpost-api - image: beryju/authentik-proxy:2021.5.1 + image: ghcr.io/goauthentik/proxy:2021.5.1 name: proxy ports: - containerPort: 4180 diff --git a/website/docs/outposts/proxy.mdx b/website/docs/outposts/proxy.mdx index f8bd14fd3..ecbfa21ec 100644 --- a/website/docs/outposts/proxy.mdx +++ b/website/docs/outposts/proxy.mdx @@ -157,7 +157,7 @@ services: - '--entrypoints.https.address=:443' authentik_proxy: - image: beryju/authentik-proxy:2021.4.4 + image: ghcr.io/goauthentik/proxy:2021.5.1 ports: - 4180:4180 - 4443:4443