专属域名
文档搜索
轩辕助手
Run助手
邀请有礼
返回顶部
快速返回页面顶部
收起
收起工具栏
轩辕镜像 官方专业版
轩辕镜像 官方专业版轩辕镜像 官方专业版官方专业版
首页个人中心搜索镜像

交易
充值流量我的订单
工具
提交工单镜像收录一键安装
Npm 源Pip 源Homebrew 源
帮助
常见问题
其他
关于我们网站地图

官方QQ群: 1072982923

elestio/erpnext Docker 镜像 - 轩辕镜像

erpnext
elestio/erpnext
Erpnext, verified and packaged by Elestio
11 收藏0 次下载
🚀 稳定镜像源 = 更少宕机 + 更低运维成本
镜像简介版本下载
🚀 稳定镜像源 = 更少宕机 + 更低运维成本

ERPNext, verified and packaged by Elestio

A better community platform for the modern web.

ERPNextERPNext is the leading open-source enterprise resource planning (ERP) software.fiveLinesIntro":

Deploy a fully managed ERPNext on elest.io ERPNext is a free and open-source integrated Enterprise Resource Planning software developed by Frappé Technologies Pvt. Ltd. and is built on MariaDB database system using Frappe, a Python based server-side framework.

![deploy]([***]

Why use Elestio images?

  • Elestio stays in sync with updates from the original source and quickly releases new versions of this image through our automated processes.
  • Elestio images provide timely access to the most recent bug fixes and features.
  • Our team performs quality control checks to ensure the products we release meet our high standards.

Usage

Git clone

You can deploy it easily with the following command:

git clone [***]

Copy the .env file from tests folder to the project directory

cp ./tests/.env ./.env

Edit the .env file with your own values.

Run the project with the following command

docker-compose up -d

You can access the Web UI at: [***]

Docker-compose

Here are some example snippets to help you get started creating a container.

        version: "3.3"
        services:
        backend:
            image: frappe/erpnext-worker:${SOFTWARE_VERSION_TAG}
            restart: always
            volumes:
            - sites:/home/frappe/frappe-bench/sites
            - assets:/home/frappe/frappe-bench/sites/assets

        configurator:
            image: frappe/erpnext-worker:${SOFTWARE_VERSION_TAG}
            command:
            - configure.py
            environment:
            DB_HOST: ${DB_HOST}
            DB_PORT: ${DB_PORT}
            REDIS_CACHE: ${REDIS_CACHE}
            REDIS_QUEUE: ${REDIS_QUEUE}
            REDIS_SOCKETIO: ${REDIS_SOCKETIO}
            SOCKETIO_PORT: ${SOCKETIO_PORT}
            volumes:
            - sites:/home/frappe/frappe-bench/sites

        create-site:
            image: frappe/erpnext-worker:${SOFTWARE_VERSION_TAG}
            deploy:
            restart_policy:
                condition: on-failure
            volumes:
            - sites:/home/frappe/frappe-bench/sites
            - assets:/home/frappe/frappe-bench/sites/assets
            entrypoint:
            - bash
            - -c
            command:
            - >
                wait-for-it -t 120 db:3306;
                wait-for-it -t 120 redis-cache:6379;
                wait-for-it -t 120 redis-queue:6379;
                wait-for-it -t 120 redis-socketio:6379;
                export start=`date +%s`;
                until [[ -n `grep -hs ^ common_site_config.json | jq -r ".db_host // empty"` ]] && \
                [[ -n `grep -hs ^ common_site_config.json | jq -r ".redis_cache // empty"` ]] && \
                [[ -n `grep -hs ^ common_site_config.json | jq -r ".redis_queue // empty"` ]];
                do
                echo "Waiting for common_site_config.json to be created";
                sleep 5;
                if (( `date +%s`-start > 120 )); then
                    echo "could not find common_site_config.json with required keys";
                    exit 1
                fi
                done;
                echo "common_site_config.json found";
                bench new-site frontend --admin-password=${ADMIN_PASSWORD} --db-root-password=admin --install-app payments --install-app erpnext --set-default;
        db:
            image: mariadb:10.6
            restart: always
            command:
            - --character-set-server=utf8mb4
            - --collation-server=utf8mb4_unicode_ci
            - --skip-character-set-client-handshake
            - --skip-innodb-read-only-compressed # Temporary fix for MariaDB 10.6
            environment:
            MYSQL_ROOT_PASSWORD: ${MYSQL_ROOT_PASSWORD}
            volumes:
            - db-data:/var/lib/mysql

        frontend:
            image: frappe/erpnext-nginx:${SOFTWARE_VERSION_TAG}
            restart: always
            depends_on:
            backend:
                condition: service_started
            websocket:
                condition: service_started
            environment:
            BACKEND: ${BACKEND}
            FRAPPE_SITE_NAME_HEADER: ${FRAPPE_SITE_NAME_HEADER}
            SOCKETIO: ${SOCKETIO}
            UPSTREAM_REAL_IP_ADDRESS: ${UPSTREAM_REAL_IP_ADDRESS}
            UPSTREAM_REAL_IP_HEADER: ${UPSTREAM_REAL_IP_HEADER}
            UPSTREAM_REAL_IP_RECURSIVE: ${UPSTREAM_REAL_IP_RECURSIVE}
            volumes:
            - sites:/usr/share/nginx/html/sites
            - assets:/usr/share/nginx/html/assets
            ports:
            - "172.17.0.1:8989:8080"

        queue-default:
            image: frappe/erpnext-worker:${SOFTWARE_VERSION_TAG}
            restart: always
            command:
            - bench
            - worker
            - --queue
            - default
            volumes:
            - sites:/home/frappe/frappe-bench/sites
            - assets:/home/frappe/frappe-bench/sites/assets

        queue-long:
            image: frappe/erpnext-worker:${SOFTWARE_VERSION_TAG}
            restart: always
            command:
            - bench
            - worker
            - --queue
            - long
            volumes:
            - sites:/home/frappe/frappe-bench/sites
            - assets:/home/frappe/frappe-bench/sites/assets

        queue-short:
            image: frappe/erpnext-worker:${SOFTWARE_VERSION_TAG}
            restart: always
            command:
            - bench
            - worker
            - --queue
            - short
            volumes:
            - sites:/home/frappe/frappe-bench/sites
            - assets:/home/frappe/frappe-bench/sites/assets

        redis-queue:
            image: redis:6.2-alpine
            restart: alwayse
            volumes:
            - redis-queue-data:/data

        redis-cache:
            image: redis:6.2-alpine
            restart: always
            volumes:
            - redis-cache-data:/data

        redis-socketio:
            image: redis:6.2-alpine
            restart: always
            volumes:
            - redis-socketio-data:/data

        scheduler:
            image: frappe/erpnext-worker:${SOFTWARE_VERSION_TAG}
            restart: always
            command:
            - bench
            - schedule
            volumes:
            - sites:/home/frappe/frappe-bench/sites
            - assets:/home/frappe/frappe-bench/sites/assets

        websocket:
            image: frappe/frappe-socketio:${SOFTWARE_VERSION_TAG}
            restart: always
            volumes:
            - sites:/home/frappe/frappe-bench/sites
            - assets:/home/frappe/frappe-bench/sites/assets

        volumes:
        assets:
            driver: local
            driver_opts:
            type: none
            device: ${PWD}/assets
            o: bind
        db-data:
            driver: local
            driver_opts:
            type: none
            device: ${PWD}/db-data
            o: bind
        redis-queue-data:
            driver: local
            driver_opts:
            type: none
            device: ${PWD}/redis-queue-data
            o: bind
        redis-cache-data:
            driver: local
            driver_opts:
            type: none
            device: ${PWD}/redis-cache-data
            o: bind
        redis-socketio-data:
            driver: local
            driver_opts:
            type: none
            device: ${PWD}/redis-socketio-data
            o: bind
        sites:
            driver: local
            driver_opts:
            type: none
            device: ${PWD}/sites
            o: bind
Environment variables
VariableValue (example)
SOFTWARE_VERSION_TAGlatest
DB_HOSTdb-name
DB_PORT3306
REDIS_CACHEredis-cache:6379
REDIS_QUEUEredis-queue:6379
REDIS_SOCKETIOredis-socketio:6379
SOCKETIO_PORT9000
MARIADB_VERSION_TAGlatest
MYSQL_ROOT_PASSWORDpassword
BACKENDbackend:8000
FRAPPE_SITE_NAME_HEADERX-Frappe-Site-Name
SOCKETIOwebsocket:9000
UPSTREAM_REAL_IP_ADDRESS127.0.0.1
UPSTREAM_REAL_IP_HEADERX-Forwarded-For
UPSTREAM_REAL_IP_RECURSIVEon

Maintenance

Logging

The Elestio ERPNext Docker image sends the container logs to stdout. To view the logs, you can use the following command:

docker-compose logs -f

To stop the stack you can use the following command:

docker-compose down

Backup and Restore with Docker Compose

To make backup and restore operations easier, we are using folder volume mounts. You can simply stop your stack with docker-compose down, then backup all the files and subfolders in the folder near the docker-compose.yml file.

Creating a ZIP Archive For example, if you want to create a ZIP archive, navigate to the folder where you have your docker-compose.yml file and use this command:

zip -r myarchive.zip .

Restoring from ZIP Archive To restore from a ZIP archive, unzip the archive into the original folder using the following command:

unzip myarchive.zip -d /path/to/original/folder

Starting Your Stack Once your backup is complete, you can start your stack again with the following command:

docker-compose up -d

That's it! With these simple steps, you can easily backup and restore your data volumes using Docker Compose.

Links

  • ERP Next documentation

  • ERP Next Github repository

  • Elestio/ERPNext Github repository

查看更多 erpnext 相关镜像 →
frappe/erpnext logo
frappe/erpnext
ERPNext是一款免费开源的企业资源规划(ERP)系统,集成财务会计(含总账、应收应付账款、财务报表)、供应链管理(涵盖采购、库存、销售及物流跟踪)、客户关系管理(客户信息、销售机会与互动分析)、人力资源管理(员工档案、考勤、薪资与绩效)及项目管理(任务分解、进度与成本控制)等核心模块,支持业务流程自定义自动化、跨部门数据实时同步与集成报表分析,用户可免费获取完整源代码并按需修改、分发或二次开发,无需许可费用,凭借开源社区持续迭代与全球开发者支持,具备高灵活性与可扩展性,能满足各规模企业信息化需求,助力消除信息孤岛、提升运营效率、降低管理成本,实现从基础操作到战略决策的全流程数字化管理。
991M+ pulls
上次更新:未知
gaeba95/erpnext logo
gaeba95/erpnext
集成ERP、CRM、HR及打印设计器模块的企业资源规划系统Erpnext,提供一站式业务管理解决方案。
10K+ pulls
上次更新:未知
lvxj11/erpnext logo
lvxj11/erpnext
这是一款采用开源架构的企业资源规划(ERP)软件,集成财务、采购、销售、库存等核心业务模块,提供即开即用的部署镜像,无需复杂配置,用户可快速完成系统搭建并投入使用,适用于中小企业高效管理业务流程,助力提升运营效率与数据协同能力。
3910K+ pulls
上次更新:未知

轩辕镜像配置手册

探索更多轩辕镜像的使用方法,找到最适合您系统的配置方式

登录仓库拉取

通过 Docker 登录认证访问私有仓库

Linux

在 Linux 系统配置镜像服务

Windows/Mac

在 Docker Desktop 配置镜像

Docker Compose

Docker Compose 项目配置

K8s Containerd

Kubernetes 集群配置 Containerd

K3s

K3s 轻量级 Kubernetes 镜像加速

Dev Containers

VS Code Dev Containers 配置

MacOS OrbStack

MacOS OrbStack 容器配置

宝塔面板

在宝塔面板一键配置镜像

群晖

Synology 群晖 NAS 配置

飞牛

飞牛 fnOS 系统配置镜像

极空间

极空间 NAS 系统配置服务

爱快路由

爱快 iKuai 路由系统配置

绿联

绿联 NAS 系统配置镜像

威联通

QNAP 威联通 NAS 配置

Podman

Podman 容器引擎配置

Singularity/Apptainer

HPC 科学计算容器配置

其他仓库配置

ghcr、Quay、nvcr 等镜像仓库

专属域名拉取

无需登录使用专属域名

需要其他帮助?请查看我们的 常见问题Docker 镜像访问常见问题解答 或 提交工单

镜像拉取常见问题

轩辕镜像免费版与专业版有什么区别?

免费版仅支持 Docker Hub 访问,不承诺可用性和速度;专业版支持更多镜像源,保证可用性和稳定速度,提供优先客服响应。

轩辕镜像支持哪些镜像仓库?

专业版支持 docker.io、gcr.io、ghcr.io、registry.k8s.io、nvcr.io、quay.io、mcr.microsoft.com、docker.elastic.co 等;免费版仅支持 docker.io。

流量耗尽错误提示

当返回 402 Payment Required 错误时,表示流量已耗尽,需要充值流量包以恢复服务。

410 错误问题

通常由 Docker 版本过低导致,需要升级到 20.x 或更高版本以支持 V2 协议。

manifest unknown 错误

先检查 Docker 版本,版本过低则升级;版本正常则验证镜像信息是否正确。

镜像拉取成功后,如何去掉轩辕镜像域名前缀?

使用 docker tag 命令为镜像打上新标签,去掉域名前缀,使镜像名称更简洁。

查看全部问题→

用户好评

来自真实用户的反馈,见证轩辕镜像的优质服务

用户头像

oldzhang

运维工程师

Linux服务器

5

"Docker访问体验非常流畅,大镜像也能快速完成下载。"

轩辕镜像
镜像详情
...
elestio/erpnext
官方博客Docker 镜像使用技巧与技术博客
热门镜像查看热门 Docker 镜像推荐
一键安装一键安装 Docker 并配置镜像源
咨询镜像拉取问题请 提交工单,官方技术交流群:1072982923
轩辕镜像面向开发者与科研用户,提供开源镜像的搜索和访问支持。所有镜像均来源于原始仓库,本站不存储、不修改、不传播任何镜像内容。
咨询镜像拉取问题请提交工单,官方技术交流群:
轩辕镜像面向开发者与科研用户,提供开源镜像的搜索和访问支持。所有镜像均来源于原始仓库,本站不存储、不修改、不传播任何镜像内容。
官方邮箱:点击复制邮箱
©2024-2026 源码跳动
官方邮箱:点击复制邮箱Copyright © 2024-2026 杭州源码跳动科技有限公司. All rights reserved.