VaungoV
ZITADELโ€ข6mo agoโ€ข
46 replies
Vaungo

v2 login not found on fresh install (v4-rc.2)

On a fresh install of v4-rc.2 (using Docker) running on my local machine for testing, I always get the error {"code":5,"message":"Not Found"}, I presume this is the new v2 UI. Is one of my options misconfigured?

I initially started testing the latest stable release, but wanted to check out the new login form and to be able to build my own in the future. Do I need to run a reverse proxy for /ui/v2/login running with the zitadel/typescript repo?

Here is my docker compose file, based on the original provided docker compose mentioned in the docs.
services:
  zitadel:
    restart: always
    image: 'ghcr.io/zitadel/zitadel:v4.0.0-rc.2'
    command: 'start-from-init --masterkey "xxx" --tlsMode disabled'
    environment:
      ZITADEL_DATABASE_POSTGRES_HOST: host.docker.internal
      ZITADEL_DATABASE_POSTGRES_PORT: 5432
      ZITADEL_DATABASE_POSTGRES_DATABASE: zitadel
      ZITADEL_DATABASE_POSTGRES_USER_USERNAME: postgres
      ZITADEL_DATABASE_POSTGRES_USER_PASSWORD: 'xxx'
      ZITADEL_DATABASE_POSTGRES_USER_SSL_MODE: disable
      ZITADEL_DATABASE_POSTGRES_ADMIN_USERNAME: postgres
      ZITADEL_DATABASE_POSTGRES_ADMIN_PASSWORD: 'xxx'
      ZITADEL_DATABASE_POSTGRES_ADMIN_SSL_MODE: disable
      ZITADEL_EXTERNALSECURE: false
    ports:
      - '8080:8080'
Was this page helpful?