harbor使用国产数据库PolarDB PG版本部署——筑梦之路

环境说明

银河麒麟v10 arm64架构

docker-ce 25.x

PolarDB PG版本 15

harbor版本2.11

部署PolarDB PG版数据库

bash 复制代码
version: '3.3'

services:
  polardb:
    image: registry.cn-hangzhou.aliyuncs.com/polardb_pg/polardb_pg_local_instance:15
    container_name: polardb-pg
    environment:
      POLARDB_USER: postgres
      POLARDB_PASSWORD: 123456
      TZ: Asia/Shanghai
    ports:
      - "5432:5432"
    volumes:
      - ./data:/var/polardb
    privileged: true
    cap_add:
      - SYS_PTRACE
    restart: unless-stopped

检查版本和创建harbor数据库

bash 复制代码
# 检查版本
docker exec -it polardb-pg psql -U postgres -c "SELECT version();"

# 设置密码
# docker exec -it polardb-pg psql -U postgres -c "ALTER USER postgres WITH PASSWORD '123456';"

# 创建数据库,后面会使用到
docker exec -it polardb-pg psql -U postgres -c "CREATE DATABASE harbor_db;"

部署harbor

  1. 解压harbor压缩包
bash 复制代码
tar -zxf harbor-offline-installer-v2.11.0-aarch64.tgz

cd harbor
  1. 拷贝配置文件模板
bash 复制代码
cp harbor.yml.tmpl harbor.yml
  1. 修改配置文件
  1. 生成配置
bash 复制代码
./prepare
  1. 安装harbor
bash 复制代码
./install.sh
  1. 检查状态
bash 复制代码
docker-compose ps

验证测试

  1. 访问web界面

点击看看各功能是否正常

  1. 推送拉取镜像测试
bash 复制代码
docker pull nginx:1.30.4-alpine-slim

docker tag nginx:1.30.4-alpine-slim 192.168.xxx.xxx/baseapp/nginx:1.30.4-alpine-slim

docker push 192.168.xxx.xxx/baseapp/nginx:1.30.4-alpine-slim

docker pull 192.168.xxx.xxx/baseapp/nginx:1.30.4-alpine-slim
  1. 检查数据库

参考资料

Harbor 官方版本 PostgreSQL 对应关系

|---------------|------|-------------------|---------------|----------------------------------|
| Harbor版本 | 发布时间 | 官方内置 PostgreSQL版本 | PostgreSQL主版本 | 国产数据库建议 |
| Harbor 1.10.x | 2020 | PostgreSQL 9.6.x | PG 9.6 | openGauss 2.x / PolarDB PG 11 |
| Harbor 2.0.x | 2020 | PostgreSQL 9.6.x | PG 9.6 | openGauss 2.x |
| Harbor 2.1.x | 2020 | PostgreSQL 9.6.10 | PG 9.6 | openGauss 2.x / PolarDB PG 11 |
| Harbor 2.2.x | 2021 | PostgreSQL 12.x | PG 12 | openGauss 3.x / PolarDB PG 11 |
| Harbor 2.3.x | 2021 | PostgreSQL 12.x | PG 12 | openGauss 3.x / PolarDB PG 11 |
| Harbor 2.4.x | 2022 | PostgreSQL 13.x | PG 13 | openGauss 3.x/5.x |
| Harbor 2.5.x | 2022 | PostgreSQL 13.x | PG 13 | openGauss 5.x / PolarDB PG 14 |
| Harbor 2.6.x | 2022 | PostgreSQL 13.3 | PG 13 | openGauss 5.x / PolarDB PG 14 |
| Harbor 2.7.x | 2023 | PostgreSQL 14.x | PG 14 | openGauss 5.x / PolarDB PG 14 |
| Harbor 2.8.x | 2023 | PostgreSQL 14.x | PG 14 | openGauss 5.x / PolarDB PG 14 |
| Harbor 2.9.x | 2023 | PostgreSQL 14.x | PG 14 | openGauss 5.x / PolarDB PG 14 |
| Harbor 2.10.x | 2024 | PostgreSQL 14.x | PG 14 | openGauss 5.x/6.x / PolarDB PG14 |
| Harbor 2.11.x | 2024 | PostgreSQL 14.x | PG14 | openGauss 6.x / PolarDB PG14/15 |
| Harbor 2.12.x | 2024 | PostgreSQL 14.x | PG14 | openGauss 6.x / PolarDB PG14/15 |
| Harbor 2.13.x | 2025 | PostgreSQL 14.10 | PG14 | openGauss 6.x / PolarDB PG14/15 |
| Harbor 最新版本 | 当前 | PostgreSQL 15.x | PG15 | openGauss 6.x / PolarDB PG15 |

Harbor 与 PostgreSQL / PolarDB / openGauss 兼容矩阵

|------------------|----------|----------------------|-------------------|-------|
| Harbor版本 | 官方PG版本 | PolarDB PostgreSQL推荐 | openGauss推荐 | 兼容等级 |
| Harbor 2.0-2.3 | PG9.6/12 | PolarDB PG11 | openGauss 2.x/3.x | ★★★★ |
| Harbor 2.4-2.6 | PG13 | PolarDB PG14 | openGauss 5.x | ★★★★★ |
| Harbor 2.7-2.10 | PG14 | PolarDB PG14 | openGauss 5.x | ★★★★★ |
| Harbor 2.11-2.13 | PG14 | PolarDB PG14/15 | openGauss 6.x | ★★★★★ |
| Harbor 新版本 | PG15 | PolarDB PG15 | openGauss 6.x | ★★★★ |

PolarDB PG 、openGauss 两款开源免费的国产数据库兼容性相对较好,推荐使用这两款。

相关推荐
晴天¥6 小时前
Oracle 19c数据库内存管理优化(内存管理方式调整及内存扩容)
数据库·oracle·oracle数据库集群调优
CQU_JIAKE6 小时前
9.10【A】
数据库
乐观的Terry7 小时前
Redis生产环境redis-conf配置教程
数据库·redis
SeaTunnel7 小时前
Redis 数据迁移不用写脚本:SeaTunnel 支持 String、Hash、Set、ZSet 四种数据类型
数据库·redis·哈希算法·数据迁移·seatunnel·数据同步
晊晌_h7 小时前
嵌入式从0到精通——SQLite3 数据库
数据库·sqlite·sqlite3
海浪仙人掌7 小时前
账龄分析怎么操作?账龄分析实施流程有哪些步骤?
数据库
楚枫默寒7 小时前
Oracle AWR 自动巡检报告
数据库·oracle
吉甫作诵7 小时前
Oracle 19c 常用运维命令大全
运维·数据库·oracle
宗介波妞7 小时前
主站与场站多业务链路通断测试实战指南(电力自动化联调)
网络·数据库
邪修king7 小时前
MySQL数据库(二):操作详解:从创建、查看到备份恢复
数据库·mysql