# nacos-plugin **Repository Path**: opensteward/nacos-plugin ## Basic Information - **Project Name**: nacos-plugin - **Description**: A collection of Nacos plug-ins, providing Nacos with pluggable plug-in capabilities, support for user customization and high scalability。Maintained by the 码匠君 from the Dromara open source community - **Primary Language**: Java - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2025-09-02 - **Last Updated**: 2025-10-01 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # nacos-plugin A collection of Nacos plug-ins that provide pluggable plug-in capabilities for Nacos and support user customization and high scalability # 简介 官方 nacos-plugin 目前无人管理以及合并PR。 该仓库从[fuhouyu/nacos-plugin](https://github.com/fuhouyu/nacos-plugin) fork,为了处理数据源的适配。在其 2.4.X 基础之上持续维护了 Nacos Postgresql 插件的适配,以及 pom 配置文件的规范处理 # 版本 当前适配至 Nacos 3.1.0 # 镜像 ```yaml services: nacos: image: quay.io/herodotus-cloud/nacos-server:v3.1.0 # image: herodotus/nacos-server:v3.1.0 container_name: nacos hostname: nacos environment: MODE: standalone # SPRING_DATASOURCE_PLATFORM: mysql # MYSQL_SERVICE_HOST: 192.168.101.10 # MYSQL_SERVICE_PORT: 13306 # MYSQL_SERVICE_USER: nacos # MYSQL_SERVICE_PASSWORD: nacos # MYSQL_SERVICE_DB_NAME: nacos # MYSQL_SERVICE_DB_PARAM: characterEncoding=utf8&connectTimeout=1000&socketTimeout=3000&autoReconnect=true&allowPublicKeyRetrieval=true&serverTimezone=GMT%2B8 SPRING_DATASOURCE_PLATFORM: postgresql POSTGRESQL_SERVICE_HOST: 192.168.101.10 POSTGRESQL_SERVICE_PORT: 15432 POSTGRESQL_SERVICE_USER: nacos POSTGRESQL_SERVICE_PASSWORD: nacos POSTGRESQL_SERVICE_DB_NAME: nacos POSTGRESQL_SERVICE_DB_PARAM: tcpKeepAlive=true&reWriteBatchedInserts=true&ApplicationName=nacos NACOS_AUTH_IDENTITY_KEY: serverIdentity NACOS_AUTH_IDENTITY_VALUE: security NACOS_AUTH_TOKEN: SecretKey012345678901234567890123456789012345678901234567890123456789 NACOS_AUTH_ENABLE: true volumes: - /usr/local/docker-volumes/nacos/data:/home/nacos/data - /usr/local/docker-volumes/nacos/logs:/home/nacos/logs ports: - "8849:8080" - "8848:8848" - "9848:9848" - "9849:9849" ```