mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-25 08:55:08 +00:00
fix: build
This commit is contained in:
parent
072483e621
commit
3159e7e69d
1 changed files with 146 additions and 111 deletions
257
pwd.yml
257
pwd.yml
|
|
@ -1,71 +1,44 @@
|
||||||
version: "3"
|
version: "3"
|
||||||
|
|
||||||
services:
|
services:
|
||||||
db:
|
|
||||||
image: mariadb:10.6
|
|
||||||
platform: linux/amd64
|
|
||||||
command:
|
|
||||||
- --character-set-server=utf8mb4
|
|
||||||
- --collation-server=utf8mb4_unicode_ci
|
|
||||||
- --skip-character-set-client-handshake
|
|
||||||
- --skip-innodb-read-only-compressed
|
|
||||||
environment:
|
|
||||||
MYSQL_ROOT_PASSWORD: admin
|
|
||||||
MARIADB_ROOT_PASSWORD: admin
|
|
||||||
volumes:
|
|
||||||
- db-data:/var/lib/mysql
|
|
||||||
networks:
|
|
||||||
- frappe_network
|
|
||||||
healthcheck:
|
|
||||||
test: mysqladmin ping -h localhost --password=admin
|
|
||||||
interval: 1s
|
|
||||||
retries: 20
|
|
||||||
|
|
||||||
redis-cache:
|
|
||||||
image: redis:6.2-alpine
|
|
||||||
platform: linux/amd64
|
|
||||||
volumes:
|
|
||||||
- redis-queue-data:/data
|
|
||||||
networks:
|
|
||||||
- frappe_network
|
|
||||||
|
|
||||||
redis-queue:
|
|
||||||
image: redis:6.2-alpine
|
|
||||||
platform: linux/amd64
|
|
||||||
volumes:
|
|
||||||
- redis-queue-data:/data
|
|
||||||
networks:
|
|
||||||
- frappe_network
|
|
||||||
|
|
||||||
backend:
|
backend:
|
||||||
image: frappe/erpnext:v15.65.4
|
image: frappe/erpnext:v15
|
||||||
platform: linux/amd64
|
platform: linux/amd64
|
||||||
volumes:
|
|
||||||
- sites:/home/frappe/frappe-bench/sites
|
|
||||||
- logs:/home/frappe/frappe-bench/logs
|
|
||||||
environment:
|
|
||||||
DB_HOST: db
|
|
||||||
DB_PORT: "3306"
|
|
||||||
MYSQL_ROOT_PASSWORD: admin
|
|
||||||
MARIADB_ROOT_PASSWORD: admin
|
|
||||||
networks:
|
networks:
|
||||||
- frappe_network
|
- frappe_network
|
||||||
deploy:
|
deploy:
|
||||||
restart_policy:
|
restart_policy:
|
||||||
condition: on-failure
|
condition: on-failure
|
||||||
|
volumes:
|
||||||
|
- sites:/home/frappe/frappe-bench/sites
|
||||||
|
- logs:/home/frappe/frappe-bench/logs
|
||||||
|
- apps:/home/frappe/frappe-bench/apps
|
||||||
|
environment:
|
||||||
|
DB_HOST: "db"
|
||||||
|
DB_PORT: "3306"
|
||||||
|
MYSQL_ROOT_PASSWORD: admin
|
||||||
|
MARIADB_ROOT_PASSWORD: admin
|
||||||
|
|
||||||
configurator:
|
configurator:
|
||||||
image: frappe/erpnext:v15.65.4
|
image: frappe/erpnext:v15
|
||||||
platform: linux/amd64
|
platform: linux/amd64
|
||||||
entrypoint: ["bash", "-c"]
|
networks:
|
||||||
command: >
|
- frappe_network
|
||||||
ls -1 apps > sites/apps.txt &&
|
deploy:
|
||||||
bench set-config -g db_host $DB_HOST &&
|
restart_policy:
|
||||||
bench set-config -gp db_port $DB_PORT &&
|
condition: none
|
||||||
bench set-config -g redis_cache redis://$REDIS_CACHE &&
|
entrypoint:
|
||||||
bench set-config -g redis_queue redis://$REDIS_QUEUE &&
|
- bash
|
||||||
bench set-config -g redis_socketio redis://$REDIS_QUEUE &&
|
- -c
|
||||||
bench set-config -gp socketio_port $SOCKETIO_PORT;
|
command:
|
||||||
|
- >
|
||||||
|
ls -1 apps > sites/apps.txt;
|
||||||
|
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:
|
environment:
|
||||||
DB_HOST: db
|
DB_HOST: db
|
||||||
DB_PORT: "3306"
|
DB_PORT: "3306"
|
||||||
|
|
@ -75,49 +48,78 @@ services:
|
||||||
volumes:
|
volumes:
|
||||||
- sites:/home/frappe/frappe-bench/sites
|
- sites:/home/frappe/frappe-bench/sites
|
||||||
- logs:/home/frappe/frappe-bench/logs
|
- logs:/home/frappe/frappe-bench/logs
|
||||||
|
- apps:/home/frappe/frappe-bench/apps
|
||||||
|
|
||||||
|
create-site:
|
||||||
|
image: frappe/erpnext:v15
|
||||||
|
platform: linux/amd64
|
||||||
networks:
|
networks:
|
||||||
- frappe_network
|
- frappe_network
|
||||||
deploy:
|
deploy:
|
||||||
restart_policy:
|
restart_policy:
|
||||||
condition: none
|
condition: none
|
||||||
|
|
||||||
create-site:
|
|
||||||
image: frappe/erpnext:v15.65.4
|
|
||||||
platform: linux/amd64
|
|
||||||
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 "common_site_config.json not ready";
|
|
||||||
exit 1;
|
|
||||||
fi;
|
|
||||||
done;
|
|
||||||
echo "sites/common_site_config.json found";
|
|
||||||
bench new-site --mariadb-user-host-login-scope='%' --admin-password=admin --db-root-username=root --db-root-password=admin --install-app erpnext --set-default frontend;
|
|
||||||
volumes:
|
volumes:
|
||||||
- sites:/home/frappe/frappe-bench/sites
|
- sites:/home/frappe/frappe-bench/sites
|
||||||
- logs:/home/frappe/frappe-bench/logs
|
- logs:/home/frappe/frappe-bench/logs
|
||||||
|
- apps:/home/frappe/frappe-bench/apps
|
||||||
|
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";
|
||||||
|
bench new-site --mariadb-user-host-login-scope='%' --admin-password=admin --db-root-username=root --db-root-password=admin --install-app erpnext --set-default frontend;
|
||||||
|
|
||||||
|
db:
|
||||||
|
image: mariadb:10.6
|
||||||
|
platform: linux/amd64
|
||||||
networks:
|
networks:
|
||||||
- frappe_network
|
- frappe_network
|
||||||
|
healthcheck:
|
||||||
|
test: mysqladmin ping -h localhost --password=admin
|
||||||
|
interval: 1s
|
||||||
|
retries: 20
|
||||||
deploy:
|
deploy:
|
||||||
restart_policy:
|
restart_policy:
|
||||||
condition: none
|
condition: on-failure
|
||||||
|
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: admin
|
||||||
|
MARIADB_ROOT_PASSWORD: admin
|
||||||
|
volumes:
|
||||||
|
- db-data:/var/lib/mysql
|
||||||
|
|
||||||
frontend:
|
frontend:
|
||||||
image: frappe/erpnext:v15.65.4
|
image: frappe/erpnext:v15
|
||||||
platform: linux/amd64
|
platform: linux/amd64
|
||||||
command: ["nginx-entrypoint.sh"]
|
networks:
|
||||||
ports:
|
- frappe_network
|
||||||
- "8080:8080"
|
depends_on:
|
||||||
|
- websocket
|
||||||
|
deploy:
|
||||||
|
restart_policy:
|
||||||
|
condition: on-failure
|
||||||
|
command:
|
||||||
|
- nginx-entrypoint.sh
|
||||||
environment:
|
environment:
|
||||||
BACKEND: backend:8000
|
BACKEND: backend:8000
|
||||||
FRAPPE_SITE_NAME_HEADER: frontend
|
FRAPPE_SITE_NAME_HEADER: frontend
|
||||||
|
|
@ -130,21 +132,60 @@ services:
|
||||||
volumes:
|
volumes:
|
||||||
- sites:/home/frappe/frappe-bench/sites
|
- sites:/home/frappe/frappe-bench/sites
|
||||||
- logs:/home/frappe/frappe-bench/logs
|
- logs:/home/frappe/frappe-bench/logs
|
||||||
|
- apps:/home/frappe/frappe-bench/apps
|
||||||
|
ports:
|
||||||
|
- "8080:8080"
|
||||||
|
|
||||||
|
queue-long:
|
||||||
|
image: frappe/erpnext:v15
|
||||||
|
platform: linux/amd64
|
||||||
networks:
|
networks:
|
||||||
- frappe_network
|
- frappe_network
|
||||||
depends_on:
|
|
||||||
- websocket
|
|
||||||
deploy:
|
deploy:
|
||||||
restart_policy:
|
restart_policy:
|
||||||
condition: on-failure
|
condition: on-failure
|
||||||
|
command:
|
||||||
websocket:
|
- bench
|
||||||
image: frappe/erpnext:v15.65.4
|
- worker
|
||||||
platform: linux/amd64
|
- --queue
|
||||||
command: ["node", "/home/frappe/frappe-bench/apps/frappe/socketio.js"]
|
- long,default,short
|
||||||
volumes:
|
volumes:
|
||||||
- sites:/home/frappe/frappe-bench/sites
|
- sites:/home/frappe/frappe-bench/sites
|
||||||
- logs:/home/frappe/frappe-bench/logs
|
- logs:/home/frappe/frappe-bench/logs
|
||||||
|
- apps:/home/frappe/frappe-bench/apps
|
||||||
|
|
||||||
|
queue-short:
|
||||||
|
image: frappe/erpnext:v15
|
||||||
|
platform: linux/amd64
|
||||||
|
networks:
|
||||||
|
- frappe_network
|
||||||
|
deploy:
|
||||||
|
restart_policy:
|
||||||
|
condition: on-failure
|
||||||
|
command:
|
||||||
|
- bench
|
||||||
|
- worker
|
||||||
|
- --queue
|
||||||
|
- short,default
|
||||||
|
volumes:
|
||||||
|
- sites:/home/frappe/frappe-bench/sites
|
||||||
|
- logs:/home/frappe/frappe-bench/logs
|
||||||
|
- apps:/home/frappe/frappe-bench/apps
|
||||||
|
|
||||||
|
redis-queue:
|
||||||
|
image: redis:6.2-alpine
|
||||||
|
platform: linux/amd64
|
||||||
|
networks:
|
||||||
|
- frappe_network
|
||||||
|
deploy:
|
||||||
|
restart_policy:
|
||||||
|
condition: on-failure
|
||||||
|
volumes:
|
||||||
|
- redis-queue-data:/data
|
||||||
|
|
||||||
|
redis-cache:
|
||||||
|
image: redis:6.2-alpine
|
||||||
|
platform: linux/amd64
|
||||||
networks:
|
networks:
|
||||||
- frappe_network
|
- frappe_network
|
||||||
deploy:
|
deploy:
|
||||||
|
|
@ -152,49 +193,43 @@ services:
|
||||||
condition: on-failure
|
condition: on-failure
|
||||||
|
|
||||||
scheduler:
|
scheduler:
|
||||||
image: frappe/erpnext:v15.65.4
|
image: frappe/erpnext:v15
|
||||||
platform: linux/amd64
|
platform: linux/amd64
|
||||||
command: ["bench", "schedule"]
|
|
||||||
volumes:
|
|
||||||
- sites:/home/frappe/frappe-bench/sites
|
|
||||||
- logs:/home/frappe/frappe-bench/logs
|
|
||||||
networks:
|
networks:
|
||||||
- frappe_network
|
- frappe_network
|
||||||
deploy:
|
deploy:
|
||||||
restart_policy:
|
restart_policy:
|
||||||
condition: on-failure
|
condition: on-failure
|
||||||
|
command:
|
||||||
|
- bench
|
||||||
|
- schedule
|
||||||
|
volumes:
|
||||||
|
- sites:/home/frappe/frappe-bench/sites
|
||||||
|
- logs:/home/frappe/frappe-bench/logs
|
||||||
|
- apps:/home/frappe/frappe-bench/apps
|
||||||
|
|
||||||
queue-short:
|
websocket:
|
||||||
image: frappe/erpnext:v15.65.4
|
image: frappe/erpnext:v15
|
||||||
platform: linux/amd64
|
platform: linux/amd64
|
||||||
command: ["bench", "worker", "--queue", "short,default"]
|
|
||||||
volumes:
|
|
||||||
- sites:/home/frappe/frappe-bench/sites
|
|
||||||
- logs:/home/frappe/frappe-bench/logs
|
|
||||||
networks:
|
networks:
|
||||||
- frappe_network
|
- frappe_network
|
||||||
deploy:
|
deploy:
|
||||||
restart_policy:
|
restart_policy:
|
||||||
condition: on-failure
|
condition: on-failure
|
||||||
|
command:
|
||||||
queue-long:
|
- node
|
||||||
image: frappe/erpnext:v15.65.4
|
- /home/frappe/frappe-bench/apps/frappe/socketio.js
|
||||||
platform: linux/amd64
|
|
||||||
command: ["bench", "worker", "--queue", "long,default,short"]
|
|
||||||
volumes:
|
volumes:
|
||||||
- sites:/home/frappe/frappe-bench/sites
|
- sites:/home/frappe/frappe-bench/sites
|
||||||
- logs:/home/frappe/frappe-bench/logs
|
- logs:/home/frappe/frappe-bench/logs
|
||||||
networks:
|
- apps:/home/frappe/frappe-bench/apps
|
||||||
- frappe_network
|
|
||||||
deploy:
|
|
||||||
restart_policy:
|
|
||||||
condition: on-failure
|
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
db-data:
|
db-data:
|
||||||
redis-queue-data:
|
redis-queue-data:
|
||||||
sites:
|
sites:
|
||||||
logs:
|
logs:
|
||||||
|
apps:
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
frappe_network:
|
frappe_network:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue