# hbteck-auth **Repository Path**: hbtek-base/hbteck-auth ## Basic Information - **Project Name**: hbteck-auth - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-11-29 - **Last Updated**: 2025-06-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # hbteck 认证中心 > 基础环境 - gradle 8.5 [下载地址](https://gradle.org/releases/) - java(17+) [下载地址](https://www.oracle.com/java/technologies/javase/jdk17-archive-downloads.html) > 项目结构 ```lua hbteck-auth ├── auth-application //应用层 ├── auth-domain //领域层 ├── auth-facade //接口门面层 ├── auth-infrastructure //基础设施层 ├── auth-repository //仓储层 ├── auth-start //启动层 ├── auth-utility //工具层 ``` ![img.png](img.png) > docker 运行命令 ```shell docker run -itd --name hbteck-auth \ -p 18510:18510 \ --restart=always \ --privileged=true \ -m 512m \ -e JVM_MEM=512m \ -e APP_ENV=local \ -e REGISTER_ADDRESS=http://127.0.0.0.1:8848 \ -e NACOS_USERNAME=nacos_app \ -e NACOS_PASSWORD=nacos@2024app \ -v /data/java/hbteck-auth/logs:/home/logs \ harbor.hbteck.cn/hbteck-auth:latest ```