mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
Merge pull request #1214 from NagariaHussain/template-erpnext
feat: add erpnext template
This commit is contained in:
5
apps/dokploy/public/templates/erpnext.svg
Normal file
5
apps/dokploy/public/templates/erpnext.svg
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
<svg width="101" height="100" viewBox="0 0 101 100" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M69.3721 38.0715H61.6579V30.3573C61.6579 25.4287 57.6579 21.4287 52.7293 21.4287H46.7649C41.8363 21.4287 37.8363 25.4287 37.8363 30.3573V38.0715H22.9792V45.2143H44.9792V28.5716H54.515V45.2143H71.1578V54.75H61.6221H54.515V71.393H44.9792V54.75H22.9792V61.8928H37.8363V69.6072C37.8363 74.5358 41.8363 78.5358 46.7649 78.5358H52.7293C57.6579 78.5358 61.6579 74.5358 61.6579 69.6072V61.8928H69.3721C74.3006 61.8928 78.3006 57.8928 78.3006 52.9643V47C78.3006 42.0715 74.3006 38.0715 69.3721 38.0715Z" fill="white"/>
|
||||||
|
<path d="M72.0506 0H29.1935C13.4139 0 0.62207 12.7919 0.62207 28.5714V71.4286C0.62207 87.2081 13.4139 100 29.1935 100H72.0506C87.8302 100 100.622 87.2081 100.622 71.4286V28.5714C100.622 12.7919 87.8302 0 72.0506 0Z" fill="#0089FF"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M68.0067 32.945H66.3293H44.5235H33.6205V23.999H68.0067V32.945ZM44.5233 53.9122V66.2129H68.2861V75.1589H33.6204V44.9662H44.5233H66.3291V53.9122H44.5233Z" fill="white"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.1 KiB |
346
apps/dokploy/templates/erpnext/docker-compose.yml
Normal file
346
apps/dokploy/templates/erpnext/docker-compose.yml
Normal file
@@ -0,0 +1,346 @@
|
|||||||
|
x-custom-image: &custom_image
|
||||||
|
image: ${IMAGE_NAME:-docker.io/frappe/erpnext}:${VERSION:-version-15}
|
||||||
|
pull_policy: ${PULL_POLICY:-always}
|
||||||
|
deploy:
|
||||||
|
restart_policy:
|
||||||
|
condition: always
|
||||||
|
|
||||||
|
services:
|
||||||
|
backend:
|
||||||
|
<<: *custom_image
|
||||||
|
volumes:
|
||||||
|
- sites:/home/frappe/frappe-bench/sites
|
||||||
|
networks:
|
||||||
|
- bench-network
|
||||||
|
healthcheck:
|
||||||
|
test:
|
||||||
|
- CMD
|
||||||
|
- wait-for-it
|
||||||
|
- '0.0.0.0:8000'
|
||||||
|
interval: 2s
|
||||||
|
timeout: 10s
|
||||||
|
retries: 30
|
||||||
|
|
||||||
|
frontend:
|
||||||
|
<<: *custom_image
|
||||||
|
command:
|
||||||
|
- nginx-entrypoint.sh
|
||||||
|
depends_on:
|
||||||
|
backend:
|
||||||
|
condition: service_started
|
||||||
|
required: true
|
||||||
|
websocket:
|
||||||
|
condition: service_started
|
||||||
|
required: true
|
||||||
|
environment:
|
||||||
|
BACKEND: backend:8000
|
||||||
|
FRAPPE_SITE_NAME_HEADER: ${FRAPPE_SITE_NAME_HEADER:-$$host}
|
||||||
|
SOCKETIO: websocket:9000
|
||||||
|
UPSTREAM_REAL_IP_ADDRESS: 127.0.0.1
|
||||||
|
UPSTREAM_REAL_IP_HEADER: X-Forwarded-For
|
||||||
|
UPSTREAM_REAL_IP_RECURSIVE: "off"
|
||||||
|
volumes:
|
||||||
|
- sites:/home/frappe/frappe-bench/sites
|
||||||
|
|
||||||
|
networks:
|
||||||
|
- bench-network
|
||||||
|
|
||||||
|
healthcheck:
|
||||||
|
test:
|
||||||
|
- CMD
|
||||||
|
- wait-for-it
|
||||||
|
- '0.0.0.0:8080'
|
||||||
|
interval: 2s
|
||||||
|
timeout: 30s
|
||||||
|
retries: 30
|
||||||
|
|
||||||
|
queue-default:
|
||||||
|
<<: *custom_image
|
||||||
|
command:
|
||||||
|
- bench
|
||||||
|
- worker
|
||||||
|
- --queue
|
||||||
|
- default
|
||||||
|
volumes:
|
||||||
|
- sites:/home/frappe/frappe-bench/sites
|
||||||
|
networks:
|
||||||
|
- bench-network
|
||||||
|
healthcheck:
|
||||||
|
test:
|
||||||
|
- CMD
|
||||||
|
- wait-for-it
|
||||||
|
- 'redis-queue:6379'
|
||||||
|
interval: 2s
|
||||||
|
timeout: 10s
|
||||||
|
retries: 30
|
||||||
|
depends_on:
|
||||||
|
configurator:
|
||||||
|
condition: service_completed_successfully
|
||||||
|
required: true
|
||||||
|
|
||||||
|
queue-long:
|
||||||
|
<<: *custom_image
|
||||||
|
command:
|
||||||
|
- bench
|
||||||
|
- worker
|
||||||
|
- --queue
|
||||||
|
- long
|
||||||
|
volumes:
|
||||||
|
- sites:/home/frappe/frappe-bench/sites
|
||||||
|
networks:
|
||||||
|
- bench-network
|
||||||
|
healthcheck:
|
||||||
|
test:
|
||||||
|
- CMD
|
||||||
|
- wait-for-it
|
||||||
|
- 'redis-queue:6379'
|
||||||
|
interval: 2s
|
||||||
|
timeout: 10s
|
||||||
|
retries: 30
|
||||||
|
depends_on:
|
||||||
|
configurator:
|
||||||
|
condition: service_completed_successfully
|
||||||
|
required: true
|
||||||
|
|
||||||
|
queue-short:
|
||||||
|
<<: *custom_image
|
||||||
|
command:
|
||||||
|
- bench
|
||||||
|
- worker
|
||||||
|
- --queue
|
||||||
|
- short
|
||||||
|
volumes:
|
||||||
|
- sites:/home/frappe/frappe-bench/sites
|
||||||
|
networks:
|
||||||
|
- bench-network
|
||||||
|
healthcheck:
|
||||||
|
test:
|
||||||
|
- CMD
|
||||||
|
- wait-for-it
|
||||||
|
- 'redis-queue:6379'
|
||||||
|
interval: 2s
|
||||||
|
timeout: 10s
|
||||||
|
retries: 30
|
||||||
|
depends_on:
|
||||||
|
configurator:
|
||||||
|
condition: service_completed_successfully
|
||||||
|
required: true
|
||||||
|
|
||||||
|
scheduler:
|
||||||
|
<<: *custom_image
|
||||||
|
healthcheck:
|
||||||
|
test:
|
||||||
|
- CMD
|
||||||
|
- wait-for-it
|
||||||
|
- 'redis-queue:6379'
|
||||||
|
interval: 2s
|
||||||
|
timeout: 10s
|
||||||
|
retries: 30
|
||||||
|
command:
|
||||||
|
- bench
|
||||||
|
- schedule
|
||||||
|
depends_on:
|
||||||
|
configurator:
|
||||||
|
condition: service_completed_successfully
|
||||||
|
required: true
|
||||||
|
volumes:
|
||||||
|
- sites:/home/frappe/frappe-bench/sites
|
||||||
|
networks:
|
||||||
|
- bench-network
|
||||||
|
|
||||||
|
websocket:
|
||||||
|
<<: *custom_image
|
||||||
|
healthcheck:
|
||||||
|
test:
|
||||||
|
- CMD
|
||||||
|
- wait-for-it
|
||||||
|
- '0.0.0.0:9000'
|
||||||
|
interval: 2s
|
||||||
|
timeout: 10s
|
||||||
|
retries: 30
|
||||||
|
command:
|
||||||
|
- node
|
||||||
|
- /home/frappe/frappe-bench/apps/frappe/socketio.js
|
||||||
|
depends_on:
|
||||||
|
configurator:
|
||||||
|
condition: service_completed_successfully
|
||||||
|
required: true
|
||||||
|
volumes:
|
||||||
|
- sites:/home/frappe/frappe-bench/sites
|
||||||
|
networks:
|
||||||
|
- bench-network
|
||||||
|
|
||||||
|
configurator:
|
||||||
|
<<: *custom_image
|
||||||
|
deploy:
|
||||||
|
mode: replicated
|
||||||
|
replicas: ${CONFIGURE:-0}
|
||||||
|
restart_policy:
|
||||||
|
condition: none
|
||||||
|
entrypoint: ["bash", "-c"]
|
||||||
|
command:
|
||||||
|
- >
|
||||||
|
[[ $${REGENERATE_APPS_TXT} == "1" ]] && ls -1 apps > sites/apps.txt;
|
||||||
|
[[ -n `grep -hs ^ sites/common_site_config.json | jq -r ".db_host // empty"` ]] && exit 0;
|
||||||
|
bench set-config -g db_host $$DB_HOST;
|
||||||
|
bench set-config -gp db_port $$DB_PORT;
|
||||||
|
bench set-config -g redis_cache "redis://$$REDIS_CACHE";
|
||||||
|
bench set-config -g redis_queue "redis://$$REDIS_QUEUE";
|
||||||
|
bench set-config -g redis_socketio "redis://$$REDIS_QUEUE";
|
||||||
|
bench set-config -gp socketio_port $$SOCKETIO_PORT;
|
||||||
|
environment:
|
||||||
|
DB_HOST: db
|
||||||
|
DB_PORT: "3306"
|
||||||
|
REDIS_CACHE: redis-cache:6379
|
||||||
|
REDIS_QUEUE: redis-queue:6379
|
||||||
|
SOCKETIO_PORT: "9000"
|
||||||
|
REGENERATE_APPS_TXT: "${REGENERATE_APPS_TXT:-0}"
|
||||||
|
volumes:
|
||||||
|
- sites:/home/frappe/frappe-bench/sites
|
||||||
|
networks:
|
||||||
|
- bench-network
|
||||||
|
|
||||||
|
create-site:
|
||||||
|
<<: *custom_image
|
||||||
|
deploy:
|
||||||
|
mode: replicated
|
||||||
|
replicas: ${CREATE_SITE:-0}
|
||||||
|
restart_policy:
|
||||||
|
condition: none
|
||||||
|
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;
|
||||||
|
export start=`date +%s`;
|
||||||
|
until [[ -n `grep -hs ^ sites/common_site_config.json | jq -r ".db_host // empty"` ]] && \
|
||||||
|
[[ -n `grep -hs ^ sites/common_site_config.json | jq -r ".redis_cache // empty"` ]] && \
|
||||||
|
[[ -n `grep -hs ^ sites/common_site_config.json | jq -r ".redis_queue // empty"` ]];
|
||||||
|
do
|
||||||
|
echo "Waiting for sites/common_site_config.json to be created";
|
||||||
|
sleep 5;
|
||||||
|
if (( `date +%s`-start > 120 )); then
|
||||||
|
echo "could not find sites/common_site_config.json with required keys";
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
done;
|
||||||
|
echo "sites/common_site_config.json found";
|
||||||
|
[[ -d "sites/${SITE_NAME}" ]] && echo "${SITE_NAME} already exists" && exit 0;
|
||||||
|
bench new-site --mariadb-user-host-login-scope='%' --admin-password=$${ADMIN_PASSWORD} --db-root-username=root --db-root-password=$${DB_ROOT_PASSWORD} $${INSTALL_APP_ARGS} $${SITE_NAME};
|
||||||
|
volumes:
|
||||||
|
- sites:/home/frappe/frappe-bench/sites
|
||||||
|
environment:
|
||||||
|
ADMIN_PASSWORD: ${ADMIN_PASSWORD}
|
||||||
|
DB_ROOT_PASSWORD: ${DB_ROOT_PASSWORD}
|
||||||
|
INSTALL_APP_ARGS: ${INSTALL_APP_ARGS}
|
||||||
|
SITE_NAME: ${SITE_NAME}
|
||||||
|
networks:
|
||||||
|
- bench-network
|
||||||
|
|
||||||
|
migration:
|
||||||
|
<<: *custom_image
|
||||||
|
deploy:
|
||||||
|
mode: replicated
|
||||||
|
replicas: ${MIGRATE:-0}
|
||||||
|
restart_policy:
|
||||||
|
condition: none
|
||||||
|
entrypoint: ["bash", "-c"]
|
||||||
|
command:
|
||||||
|
- >
|
||||||
|
curl -f http://${SITE_NAME}:8080/api/method/ping || echo "Site busy" && exit 0;
|
||||||
|
bench --site all set-config -p maintenance_mode 1;
|
||||||
|
bench --site all set-config -p pause_scheduler 1;
|
||||||
|
bench --site all migrate;
|
||||||
|
bench --site all set-config -p maintenance_mode 0;
|
||||||
|
bench --site all set-config -p pause_scheduler 0;
|
||||||
|
volumes:
|
||||||
|
- sites:/home/frappe/frappe-bench/sites
|
||||||
|
networks:
|
||||||
|
- bench-network
|
||||||
|
|
||||||
|
db:
|
||||||
|
image: mariadb:10.6
|
||||||
|
deploy:
|
||||||
|
restart_policy:
|
||||||
|
condition: always
|
||||||
|
healthcheck:
|
||||||
|
test: mysqladmin ping -h localhost --password=${DB_ROOT_PASSWORD}
|
||||||
|
interval: 1s
|
||||||
|
retries: 20
|
||||||
|
command:
|
||||||
|
- --character-set-server=utf8mb4
|
||||||
|
- --collation-server=utf8mb4_unicode_ci
|
||||||
|
- --skip-character-set-client-handshake
|
||||||
|
- --skip-innodb-read-only-compressed
|
||||||
|
environment:
|
||||||
|
- MYSQL_ROOT_PASSWORD=${DB_ROOT_PASSWORD}
|
||||||
|
- MARIADB_ROOT_PASSWORD=${DB_ROOT_PASSWORD}
|
||||||
|
volumes:
|
||||||
|
- db-data:/var/lib/mysql
|
||||||
|
networks:
|
||||||
|
- bench-network
|
||||||
|
|
||||||
|
redis-cache:
|
||||||
|
deploy:
|
||||||
|
restart_policy:
|
||||||
|
condition: always
|
||||||
|
image: redis:6.2-alpine
|
||||||
|
volumes:
|
||||||
|
- redis-cache-data:/data
|
||||||
|
networks:
|
||||||
|
- bench-network
|
||||||
|
healthcheck:
|
||||||
|
test:
|
||||||
|
- CMD
|
||||||
|
- redis-cli
|
||||||
|
- ping
|
||||||
|
interval: 5s
|
||||||
|
timeout: 5s
|
||||||
|
retries: 3
|
||||||
|
|
||||||
|
redis-queue:
|
||||||
|
deploy:
|
||||||
|
restart_policy:
|
||||||
|
condition: always
|
||||||
|
image: redis:6.2-alpine
|
||||||
|
volumes:
|
||||||
|
- redis-queue-data:/data
|
||||||
|
networks:
|
||||||
|
- bench-network
|
||||||
|
healthcheck:
|
||||||
|
test:
|
||||||
|
- CMD
|
||||||
|
- redis-cli
|
||||||
|
- ping
|
||||||
|
interval: 5s
|
||||||
|
timeout: 5s
|
||||||
|
retries: 3
|
||||||
|
|
||||||
|
redis-socketio:
|
||||||
|
deploy:
|
||||||
|
restart_policy:
|
||||||
|
condition: always
|
||||||
|
image: redis:6.2-alpine
|
||||||
|
volumes:
|
||||||
|
- redis-socketio-data:/data
|
||||||
|
networks:
|
||||||
|
- bench-network
|
||||||
|
healthcheck:
|
||||||
|
test:
|
||||||
|
- CMD
|
||||||
|
- redis-cli
|
||||||
|
- ping
|
||||||
|
interval: 5s
|
||||||
|
timeout: 5s
|
||||||
|
retries: 3
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
db-data:
|
||||||
|
redis-cache-data:
|
||||||
|
redis-queue-data:
|
||||||
|
redis-socketio-data:
|
||||||
|
sites:
|
||||||
|
|
||||||
|
networks:
|
||||||
|
bench-network:
|
||||||
37
apps/dokploy/templates/erpnext/index.ts
Normal file
37
apps/dokploy/templates/erpnext/index.ts
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
import {
|
||||||
|
type DomainSchema,
|
||||||
|
type Schema,
|
||||||
|
type Template,
|
||||||
|
generatePassword,
|
||||||
|
generateRandomDomain,
|
||||||
|
} from "../utils";
|
||||||
|
|
||||||
|
export function generate(schema: Schema): Template {
|
||||||
|
const dbRootPassword = generatePassword(32);
|
||||||
|
const adminPassword = generatePassword(32);
|
||||||
|
const mainDomain = generateRandomDomain(schema);
|
||||||
|
|
||||||
|
const domains: DomainSchema[] = [
|
||||||
|
{
|
||||||
|
host: mainDomain,
|
||||||
|
port: 8080,
|
||||||
|
serviceName: "frontend",
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
|
const envs = [
|
||||||
|
`SITE_NAME=${mainDomain}`,
|
||||||
|
`ADMIN_PASSWORD=${adminPassword}`,
|
||||||
|
`DB_ROOT_PASSWORD=${dbRootPassword}`,
|
||||||
|
"MIGRATE=1",
|
||||||
|
"CREATE_SITE=1",
|
||||||
|
"CONFIGURE=1",
|
||||||
|
"REGENERATE_APPS_TXT=1",
|
||||||
|
"INSTALL_APP_ARGS=--install-app erpnext",
|
||||||
|
"IMAGE_NAME=docker.io/frappe/erpnext",
|
||||||
|
"VERSION=version-15",
|
||||||
|
"FRAPPE_SITE_NAME_HEADER=",
|
||||||
|
];
|
||||||
|
|
||||||
|
return { envs, domains };
|
||||||
|
}
|
||||||
@@ -1341,6 +1341,28 @@ export const templates: TemplateData[] = [
|
|||||||
tags: ["dashboard", "monitoring"],
|
tags: ["dashboard", "monitoring"],
|
||||||
load: () => import("./homarr/index").then((m) => m.generate),
|
load: () => import("./homarr/index").then((m) => m.generate),
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
id: "erpnext",
|
||||||
|
name: "ERPNext",
|
||||||
|
version: "version-15",
|
||||||
|
description: "100% Open Source and highly customizable ERP software.",
|
||||||
|
logo: "erpnext.svg",
|
||||||
|
links: {
|
||||||
|
github: "https://github.com/frappe/erpnext",
|
||||||
|
docs: "https://docs.frappe.io/erpnext",
|
||||||
|
website: "https://erpnext.com",
|
||||||
|
},
|
||||||
|
tags: [
|
||||||
|
"erp",
|
||||||
|
"accounts",
|
||||||
|
"manufacturing",
|
||||||
|
"retail",
|
||||||
|
"sales",
|
||||||
|
"pos",
|
||||||
|
"hrms",
|
||||||
|
],
|
||||||
|
load: () => import("./erpnext/index").then((m) => m.generate),
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "maybe",
|
id: "maybe",
|
||||||
name: "Maybe",
|
name: "Maybe",
|
||||||
|
|||||||
Reference in New Issue
Block a user