Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Old/Wrong UI #1336

@GitHub-gurke34

Description

@GitHub-gurke34

Hi, at the risk of embarrassing myself, I need help with a problem. I installed Bracket via Docker Compose and everything is working so far. However, the web UI shows me an outdated or non-functional version, and most of the features shown in the screenshots are missing. Thank you for any help.

This is what it looks like for me. So completely different from the screenshots. The dashboard function, for example, is completely missing:

Image

This is my Docker Compose:
services:
bracket-frontend:
image: ghcr.io/evroon/bracket-frontend
container_name: bracket-frontend
ports:
- "3000:3000"
environment:
NODE_ENV: "production"
NEXT_PUBLIC_API_BASE_URL: http://my.server.ip:3000
NEXT_PUBLIC_HCAPTCHA_SITE_KEY:
restart: unless-stopped
bracket-backend:
image: ghcr.io/evroon/bracket-backend
container_name: bracket-backend
ports:
- "8400:8400"
environment:
ENVIRONMENT: "PRODUCTION"
PG_DSN: "postgresql://bracket_prod:bracket_prod@postgres:5432/bracket_prod"
CORS_ORIGINS: http://my.server.ip:3000
ADMIN_EMAIL: [email protected]
ADMIN_PASSWORD: testtest1234
JWT_SECRET: change_me
volumes:
- ./backend/static:/app/static
restart: unless-stopped
depends_on:
- postgres
postgres:
image: postgres
restart: always
environment:
POSTGRES_DB: bracket_prod
POSTGRES_USER: bracket_prod
POSTGRES_PASSWORD: bracket_prod
volumes:
- ./postgres:/var/lib/postgresql/data

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions