mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-17 13:55:08 +00:00
Merge pull request #1914 from fredol/fix-arm64-doc
Fix Documentation and bump ERPNext version to v16.19.1
This commit is contained in:
commit
e64251a86a
1 changed files with 19 additions and 19 deletions
|
|
@ -29,8 +29,8 @@ here is the example pwd.yml file:
|
||||||
```yml
|
```yml
|
||||||
services:
|
services:
|
||||||
backend:
|
backend:
|
||||||
image: frappe/erpnext:v15
|
image: frappe/erpnext:v16.19.1
|
||||||
platform: linux/amd64
|
platform: linux/arm64
|
||||||
deploy:
|
deploy:
|
||||||
restart_policy:
|
restart_policy:
|
||||||
condition: on-failure
|
condition: on-failure
|
||||||
|
|
@ -39,8 +39,8 @@ services:
|
||||||
- logs:/home/frappe/frappe-bench/logs
|
- logs:/home/frappe/frappe-bench/logs
|
||||||
|
|
||||||
configurator:
|
configurator:
|
||||||
image: frappe/erpnext:v15
|
image: frappe/erpnext:v16.19.1
|
||||||
platform: linux/amd64
|
platform: linux/arm64
|
||||||
deploy:
|
deploy:
|
||||||
restart_policy:
|
restart_policy:
|
||||||
condition: none
|
condition: none
|
||||||
|
|
@ -68,8 +68,8 @@ services:
|
||||||
- logs:/home/frappe/frappe-bench/logs
|
- logs:/home/frappe/frappe-bench/logs
|
||||||
|
|
||||||
create-site:
|
create-site:
|
||||||
image: frappe/erpnext:v15
|
image: frappe/erpnext:v16.19.1
|
||||||
platform: linux/amd64
|
platform: linux/arm64
|
||||||
deploy:
|
deploy:
|
||||||
restart_policy:
|
restart_policy:
|
||||||
condition: none
|
condition: none
|
||||||
|
|
@ -101,7 +101,7 @@ services:
|
||||||
|
|
||||||
db:
|
db:
|
||||||
image: mariadb:11.8
|
image: mariadb:11.8
|
||||||
platform: linux/amd64
|
platform: linux/arm64
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: mysqladmin ping -h localhost --password=admin
|
test: mysqladmin ping -h localhost --password=admin
|
||||||
interval: 1s
|
interval: 1s
|
||||||
|
|
@ -119,8 +119,8 @@ services:
|
||||||
- db-data:/var/lib/mysql
|
- db-data:/var/lib/mysql
|
||||||
|
|
||||||
frontend:
|
frontend:
|
||||||
image: frappe/erpnext:v15
|
image: frappe/erpnext:v16.19.1
|
||||||
platform: linux/amd64
|
platform: linux/arm64
|
||||||
depends_on:
|
depends_on:
|
||||||
- websocket
|
- websocket
|
||||||
deploy:
|
deploy:
|
||||||
|
|
@ -144,8 +144,8 @@ services:
|
||||||
- "8080:8080"
|
- "8080:8080"
|
||||||
|
|
||||||
queue-long:
|
queue-long:
|
||||||
image: frappe/erpnext:v15
|
image: frappe/erpnext:v16.19.1
|
||||||
platform: linux/amd64
|
platform: linux/arm64
|
||||||
deploy:
|
deploy:
|
||||||
restart_policy:
|
restart_policy:
|
||||||
condition: on-failure
|
condition: on-failure
|
||||||
|
|
@ -159,8 +159,8 @@ services:
|
||||||
- logs:/home/frappe/frappe-bench/logs
|
- logs:/home/frappe/frappe-bench/logs
|
||||||
|
|
||||||
queue-short:
|
queue-short:
|
||||||
image: frappe/erpnext:v15
|
image: frappe/erpnext:v16.19.1
|
||||||
platform: linux/amd64
|
platform: linux/arm64
|
||||||
deploy:
|
deploy:
|
||||||
restart_policy:
|
restart_policy:
|
||||||
condition: on-failure
|
condition: on-failure
|
||||||
|
|
@ -175,7 +175,7 @@ services:
|
||||||
|
|
||||||
redis-queue:
|
redis-queue:
|
||||||
image: redis:6.2-alpine
|
image: redis:6.2-alpine
|
||||||
platform: linux/amd64
|
platform: linux/arm64
|
||||||
deploy:
|
deploy:
|
||||||
restart_policy:
|
restart_policy:
|
||||||
condition: on-failure
|
condition: on-failure
|
||||||
|
|
@ -184,14 +184,14 @@ services:
|
||||||
|
|
||||||
redis-cache:
|
redis-cache:
|
||||||
image: redis:6.2-alpine
|
image: redis:6.2-alpine
|
||||||
platform: linux/amd64
|
platform: linux/arm64
|
||||||
deploy:
|
deploy:
|
||||||
restart_policy:
|
restart_policy:
|
||||||
condition: on-failure
|
condition: on-failure
|
||||||
|
|
||||||
scheduler:
|
scheduler:
|
||||||
image: frappe/erpnext:v15
|
image: frappe/erpnext:v16.19.1
|
||||||
platform: linux/amd64
|
platform: linux/arm64
|
||||||
deploy:
|
deploy:
|
||||||
restart_policy:
|
restart_policy:
|
||||||
condition: on-failure
|
condition: on-failure
|
||||||
|
|
@ -203,8 +203,8 @@ services:
|
||||||
- logs:/home/frappe/frappe-bench/logs
|
- logs:/home/frappe/frappe-bench/logs
|
||||||
|
|
||||||
websocket:
|
websocket:
|
||||||
image: frappe/erpnext:v15
|
image: frappe/erpnext:v16.19.1
|
||||||
platform: linux/amd64
|
platform: linux/arm64
|
||||||
deploy:
|
deploy:
|
||||||
restart_policy:
|
restart_policy:
|
||||||
condition: on-failure
|
condition: on-failure
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue