自建应用无法拉取镜像

这是三个文件
docker-compose.yml
networks:
1panel-network:
external: true
services:
localhigress:
container_name: ${CONTAINER_NAME}
deploy:
resources:
limits:
cpus: ${CPUS}
memory: ${MEMORY_LIMIT}
environment:
- HIGRESS_ADMIN_USERNAME=${HIGRESS_ADMIN_USERNAME}
- HIGRESS_ADMIN_PASSWORD=${HIGRESS_ADMIN_PASSWORD}
image: alibaba/higress:latest
labels:
createdBy: Apps
networks:
- 1panel-network
ports:
- ${HOST_IP}:${PANEL_APP_PORT_HTTP}:80
- ${HOST_IP}:${PANEL_APP_PORT_HTTPS}:443
restart: always
volumes:
- ./opt/1panel/apps/higress/2.1.3/data

data.yml
additionalProperties:
formFields:
- default: higress
envKey: CONTAINER_NAME
labelEn: Container Name
labelZh: 容器名称
required: true
type: text

- default: ""
  envKey: HOST_IP
  labelEn: Host IP
  labelZh: 绑定主机IP(留空为全部)
  required: false
  type: text

- default: 8001
  edit: true
  envKey: PANEL_PORT_UI
  labelEn: UI Port
  labelZh: 控制台端口
  required: true
  rule: paramPort
  type: number

- default: 8080
  edit: true
  envKey: PANEL_PORT_HTTP
  labelEn: HTTP Port
  labelZh: 网关HTTP端口
  required: true
  rule: paramPort
  type: number

- default: 8443
  edit: true
  envKey: PANEL_PORT_HTTPS
  labelEn: HTTPS Port
  labelZh: 网关HTTPS端口
  required: true
  rule: paramPort
  type: number

.env
CONTAINER_NAME=‘1Panel-localhigress-vA0W’
CPUS=0
HIGRESS_ADMIN_PASSWORD=‘123456’
HIGRESS_ADMIN_USERNAME=‘admin’
HOST_IP=‘’
MEMORY_LIMIT=0
PANEL_APP_PORT_HTTP=8080
PANEL_APP_PORT_HTTPS=8443
PANEL_PORT_HTTP=8080
PANEL_PORT_HTTPS=8443
PANEL_PORT_UI=8001

想请教一下怎么自建应用或者应用仓库
image

拉镜像会报错,我在文件夹中本地用命令docker compose up -d是可以拉取镜像的 目前用的
专业版v2.0.0-beta.4

stderr: localhigress Pulling localhigress Error Get "https://registry-1.docker.io/v2/": context deadline exceeded Error response from daemon: Get "https://registry-1.docker.io/v2/": context deadline exceeded

这个就是拉取超时 换个镜像加速试试吧