mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-21 15:25:09 +00:00
Merge branch 'main' into main
This commit is contained in:
commit
a418f31c5e
10 changed files with 19 additions and 21 deletions
2
.github/workflows/build_develop.yml
vendored
2
.github/workflows/build_develop.yml
vendored
|
|
@ -27,7 +27,7 @@ jobs:
|
||||||
version: develop
|
version: develop
|
||||||
push: ${{ github.repository == 'frappe/frappe_docker' && github.event_name != 'pull_request' }}
|
push: ${{ github.repository == 'frappe/frappe_docker' && github.event_name != 'pull_request' }}
|
||||||
python_version: 3.11.6
|
python_version: 3.11.6
|
||||||
node_version: 18.18.2
|
node_version: 20.19.2
|
||||||
secrets:
|
secrets:
|
||||||
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
|
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||||
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
|
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||||
|
|
|
||||||
2
.github/workflows/build_stable.yml
vendored
2
.github/workflows/build_stable.yml
vendored
|
|
@ -65,7 +65,7 @@ jobs:
|
||||||
uses: actions/checkout@v5
|
uses: actions/checkout@v5
|
||||||
|
|
||||||
- name: Setup Python
|
- name: Setup Python
|
||||||
uses: actions/setup-python@v5
|
uses: actions/setup-python@v6
|
||||||
with:
|
with:
|
||||||
python-version: "3.10"
|
python-version: "3.10"
|
||||||
|
|
||||||
|
|
|
||||||
2
.github/workflows/docker-build-push.yml
vendored
2
.github/workflows/docker-build-push.yml
vendored
|
|
@ -74,7 +74,7 @@ jobs:
|
||||||
REGISTRY_USER: localhost:5000/frappe
|
REGISTRY_USER: localhost:5000/frappe
|
||||||
|
|
||||||
- name: Setup Python
|
- name: Setup Python
|
||||||
uses: actions/setup-python@v5
|
uses: actions/setup-python@v6
|
||||||
with:
|
with:
|
||||||
python-version: "3.10"
|
python-version: "3.10"
|
||||||
|
|
||||||
|
|
|
||||||
4
.github/workflows/lint.yml
vendored
4
.github/workflows/lint.yml
vendored
|
|
@ -16,13 +16,13 @@ jobs:
|
||||||
uses: actions/checkout@v5
|
uses: actions/checkout@v5
|
||||||
|
|
||||||
- name: Setup Python
|
- name: Setup Python
|
||||||
uses: actions/setup-python@v5
|
uses: actions/setup-python@v6
|
||||||
with:
|
with:
|
||||||
python-version: "3.10.6"
|
python-version: "3.10.6"
|
||||||
|
|
||||||
# For shfmt pre-commit hook
|
# For shfmt pre-commit hook
|
||||||
- name: Setup Go
|
- name: Setup Go
|
||||||
uses: actions/setup-go@v5
|
uses: actions/setup-go@v6
|
||||||
with:
|
with:
|
||||||
go-version: "^1.14"
|
go-version: "^1.14"
|
||||||
|
|
||||||
|
|
|
||||||
2
.github/workflows/stale.yml
vendored
2
.github/workflows/stale.yml
vendored
|
|
@ -9,7 +9,7 @@ jobs:
|
||||||
stale:
|
stale:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/stale@v9
|
- uses: actions/stale@v10
|
||||||
with:
|
with:
|
||||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
stale-issue-message: This issue has been automatically marked as stale. You have a week to explain why you believe this is an error.
|
stale-issue-message: This issue has been automatically marked as stale. You have a week to explain why you believe this is an error.
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,6 @@ version: "3.7"
|
||||||
services:
|
services:
|
||||||
mariadb:
|
mariadb:
|
||||||
image: docker.io/mariadb:10.6
|
image: docker.io/mariadb:10.6
|
||||||
platform: linux/amd64
|
|
||||||
command:
|
command:
|
||||||
- --character-set-server=utf8mb4
|
- --character-set-server=utf8mb4
|
||||||
- --collation-server=utf8mb4_unicode_ci
|
- --collation-server=utf8mb4_unicode_ci
|
||||||
|
|
@ -15,7 +14,7 @@ services:
|
||||||
|
|
||||||
# Enable PostgreSQL only if you use it, see development/README.md for more information.
|
# Enable PostgreSQL only if you use it, see development/README.md for more information.
|
||||||
# postgresql:
|
# postgresql:
|
||||||
# image: postgres:11.8
|
# image: postgres:14
|
||||||
# environment:
|
# environment:
|
||||||
# POSTGRES_PASSWORD: 123
|
# POSTGRES_PASSWORD: 123
|
||||||
# volumes:
|
# volumes:
|
||||||
|
|
@ -38,15 +37,14 @@ services:
|
||||||
|
|
||||||
redis-cache:
|
redis-cache:
|
||||||
image: docker.io/redis:alpine
|
image: docker.io/redis:alpine
|
||||||
platform: linux/amd64
|
|
||||||
|
|
||||||
redis-queue:
|
redis-queue:
|
||||||
image: docker.io/redis:alpine
|
image: docker.io/redis:alpine
|
||||||
platform: linux/amd64
|
|
||||||
|
|
||||||
frappe:
|
frappe:
|
||||||
image: docker.io/frappe/bench:latest
|
image: docker.io/frappe/bench:latest
|
||||||
platform: linux/amd64
|
# If you want to build the current bench image the Containerfile is in this Repo.
|
||||||
|
# build: ../images/bench
|
||||||
command: sleep infinity
|
command: sleep infinity
|
||||||
environment:
|
environment:
|
||||||
- SHELL=/bin/bash
|
- SHELL=/bin/bash
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@ variable PYTHON_VERSION {
|
||||||
default = "3.11.6"
|
default = "3.11.6"
|
||||||
}
|
}
|
||||||
variable NODE_VERSION {
|
variable NODE_VERSION {
|
||||||
default = "18.18.2"
|
default = "20.19.2"
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "FRAPPE_VERSION" {
|
variable "FRAPPE_VERSION" {
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# Reference: https://github.com/frappe/frappe_docker/blob/main/docs/environment-variables.md
|
# Reference: https://github.com/frappe/frappe_docker/blob/main/docs/environment-variables.md
|
||||||
|
|
||||||
ERPNEXT_VERSION=v15.78.0
|
ERPNEXT_VERSION=v15.80.0
|
||||||
|
|
||||||
DB_PASSWORD=123
|
DB_PASSWORD=123
|
||||||
|
|
||||||
|
|
|
||||||
14
pwd.yml
14
pwd.yml
|
|
@ -24,7 +24,7 @@ services:
|
||||||
MARIADB_ROOT_PASSWORD: admin
|
MARIADB_ROOT_PASSWORD: admin
|
||||||
|
|
||||||
configurator:
|
configurator:
|
||||||
image: frappe/erpnext:v15.78.0
|
image: frappe/erpnext:v15.80.0
|
||||||
networks:
|
networks:
|
||||||
- frappe_network
|
- frappe_network
|
||||||
deploy:
|
deploy:
|
||||||
|
|
@ -57,7 +57,7 @@ services:
|
||||||
- logs:/home/frappe/frappe-bench/logs
|
- logs:/home/frappe/frappe-bench/logs
|
||||||
|
|
||||||
create-site:
|
create-site:
|
||||||
image: frappe/erpnext:v15.78.0
|
image: frappe/erpnext:v15.80.0
|
||||||
networks:
|
networks:
|
||||||
- frappe_network
|
- frappe_network
|
||||||
deploy:
|
deploy:
|
||||||
|
|
@ -112,7 +112,7 @@ services:
|
||||||
- db-data:/var/lib/mysql
|
- db-data:/var/lib/mysql
|
||||||
|
|
||||||
frontend:
|
frontend:
|
||||||
image: frappe/erpnext:v15.78.0
|
image: frappe/erpnext:v15.80.0
|
||||||
networks:
|
networks:
|
||||||
- frappe_network
|
- frappe_network
|
||||||
depends_on:
|
depends_on:
|
||||||
|
|
@ -138,7 +138,7 @@ services:
|
||||||
- "8081:8080"
|
- "8081:8080"
|
||||||
|
|
||||||
queue-long:
|
queue-long:
|
||||||
image: frappe/erpnext:v15.78.0
|
image: frappe/erpnext:v15.80.0
|
||||||
networks:
|
networks:
|
||||||
- frappe_network
|
- frappe_network
|
||||||
deploy:
|
deploy:
|
||||||
|
|
@ -154,7 +154,7 @@ services:
|
||||||
- logs:/home/frappe/frappe-bench/logs
|
- logs:/home/frappe/frappe-bench/logs
|
||||||
|
|
||||||
queue-short:
|
queue-short:
|
||||||
image: frappe/erpnext:v15.78.0
|
image: frappe/erpnext:v15.80.0
|
||||||
networks:
|
networks:
|
||||||
- frappe_network
|
- frappe_network
|
||||||
deploy:
|
deploy:
|
||||||
|
|
@ -188,7 +188,7 @@ services:
|
||||||
condition: on-failure
|
condition: on-failure
|
||||||
|
|
||||||
scheduler:
|
scheduler:
|
||||||
image: frappe/erpnext:v15.78.0
|
image: frappe/erpnext:v15.80.0
|
||||||
networks:
|
networks:
|
||||||
- frappe_network
|
- frappe_network
|
||||||
deploy:
|
deploy:
|
||||||
|
|
@ -202,7 +202,7 @@ services:
|
||||||
- logs:/home/frappe/frappe-bench/logs
|
- logs:/home/frappe/frappe-bench/logs
|
||||||
|
|
||||||
websocket:
|
websocket:
|
||||||
image: frappe/erpnext:v15.78.0
|
image: frappe/erpnext:v15.80.0
|
||||||
networks:
|
networks:
|
||||||
- frappe_network
|
- frappe_network
|
||||||
deploy:
|
deploy:
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
pytest==8.4.1
|
pytest==8.4.2
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue