Plone 6.0.6 Volto frontend problem: there is no login, add files and so on

I have installed plone 6.0.6 using containers on debian 12.
localhost:3000 can be accessed, but there is only one welcome page and two personal tools (profile and preference).
This is my docker-compose.yml:

version: "3"
services:

  frontend:
    image: plone/plone-frontend:latest
    environment:
      RAZZLE_API_PATH: http://localhost:8080/Plone
      RAZZLE_INTERNAL_API_PATH: http://backend:8080/Plone
    ports:
    - "3000:3000"
    depends_on:
      - backend
backend:
    image: plone/plone-backend:6.0
    environment:
      SITE: Plone
      CORS_ALLOW_ORIGIN: '*'
      ZEO_ADDRESS: db:8100
    ports:
    - "8080:8080"
    depends_on:
      - db

 db:
    image: plone/plone-zeo:latest
    restart: always
    volumes:
      - data:/data
    ports:
    - "8100:8100"

volumes:
  data: {}

Need your help.
Hugo