Can't install Seafile 13 docker

Hi. I try to deploy seafile 13 with docker (no problem with seafile 12). I have the following message :
“Error response from daemon: manifest for seafileltd/seafile-mc:13.0-latest not found: manifest unknown: manifest unknown”
after the first “docker compose up -d”.
Any idea about the problem?
Thank you.

Seafile v13.0 is not released yet. A beta version will be available in this September.

Oh ok, thank you!

Hi, I tried to install version 13 in docker, without SEADOC.

services:
  db:
    image: mariadb:10.11
    container_name: seafile-mysql
    restart: unless-stopped
    environment:
      - MYSQL_ROOT_PASSWORD=supersecret
      - MYSQL_LOG_CONSOLE=true
      - MARIADB_AUTO_UPGRADE=1
    volumes:
      - ${SEAFILE_DB_DATA:-./data-db}:/var/lib/mysql

  seafile:
    image: seafileltd/seafile-mc:13.0-latest
    container_name: seafile
    restart: unless-stopped
    volumes:
      - ${SEAFILE_SHARED_DATA:-./data}:/shared
    env_file:
      - .env
    ports:
      - 8070:80
    depends_on:
      db:
        condition: service_healthy

    networks:
      - seafile

the .env file contains

SEAFILE_MYSQL_DB_HOST=db
SEAFILE_MYSQL_DB_USER=seafile
SEAFILE_MYSQL_DB_PASSWORD=seafilesecret
INIT_SEAFILE_MYSQL_ROOT_PASSWORD=supersecret
SEAFILE_MYSQL_DB_CCNET_DB_NAME=ccnet_db
SEAFILE_MYSQL_DB_SEAFILE_DB_NAME=seafile_db
SEAFILE_MYSQL_DB_SEAHUB_DB_NAME=seahub_db
SEAFILE_SERVER_HOSTNAME=192.168.4.113:8070
SEAFILE_SERVER_PROTOCOL=http
INIT_SEAFILE_ADMIN_EMAIL=admin@seafile.local
INIT_SEAFILE_ADMIN_PASSWORD=asecret

# Generate a new secret key with: pwgen -s 40 1
JWT_PRIVATE_KEY=SqRjLcfRAALQMQOzhNtRJVgCc9jfrOo3YWaTfCgz

# Optional Seafile Settings
ENABLE_SEADOC=false
ENABLE_NOTIFICATION_SERVER=false
SEAFILE_LOG_TO_STDOUT=false
NON_ROOT=false
#NON_ROOT=true
SITE_ROOT=/

Log install:

This is your configuration
server name:            seafile
server ip/domain:       192.168.4.113:8070

    seafile data dir:       /opt/seafile/seafile-data
    fileserver port:        8082
    database:               create new
    ccnet database:         ccnet_db
    seafile database:       seafile_db
    seahub database:        seahub_db
    database user:          seafile
...
Done.
Starting seahub at port 8000 ...

when accessed via a link, it outputs:

Page unavailable
Sorry, but the requested page is unavailable due to a server hiccup.
Our engineers have been notified, so check back later.

Does it make sense to do something, or is version 13 still a test?

Seafile server v13.0 is production ready. If you cannot install Seafile 13 docker, make sure you follow the document exactly: Setup community edition - Seafile Admin Manual

If you still have an issue, please start a new thread.