Rename build/ dir to images/
This commit is contained in:
10
.github/dependabot.yml
vendored
10
.github/dependabot.yml
vendored
@@ -6,27 +6,27 @@ updates:
|
|||||||
interval: daily
|
interval: daily
|
||||||
|
|
||||||
- package-ecosystem: docker
|
- package-ecosystem: docker
|
||||||
directory: build/bench
|
directory: images/bench
|
||||||
schedule:
|
schedule:
|
||||||
interval: daily
|
interval: daily
|
||||||
|
|
||||||
- package-ecosystem: docker
|
- package-ecosystem: docker
|
||||||
directory: build/nginx
|
directory: images/nginx
|
||||||
schedule:
|
schedule:
|
||||||
interval: daily
|
interval: daily
|
||||||
|
|
||||||
- package-ecosystem: docker
|
- package-ecosystem: docker
|
||||||
directory: build/worker
|
directory: images/worker
|
||||||
schedule:
|
schedule:
|
||||||
interval: daily
|
interval: daily
|
||||||
|
|
||||||
- package-ecosystem: docker
|
- package-ecosystem: docker
|
||||||
directory: build/socketio
|
directory: images/socketio
|
||||||
schedule:
|
schedule:
|
||||||
interval: daily
|
interval: daily
|
||||||
|
|
||||||
- package-ecosystem: npm
|
- package-ecosystem: npm
|
||||||
directory: build/socketio
|
directory: images/socketio
|
||||||
schedule:
|
schedule:
|
||||||
interval: daily
|
interval: daily
|
||||||
|
|
||||||
|
|||||||
2
.github/workflows/build_bench.yml
vendored
2
.github/workflows/build_bench.yml
vendored
@@ -5,7 +5,7 @@ on:
|
|||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
paths:
|
paths:
|
||||||
- build/bench/**
|
- images/bench/**
|
||||||
- docker-bake.hcl
|
- docker-bake.hcl
|
||||||
|
|
||||||
schedule:
|
schedule:
|
||||||
|
|||||||
6
.github/workflows/build_develop.yml
vendored
6
.github/workflows/build_develop.yml
vendored
@@ -5,9 +5,9 @@ on:
|
|||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
paths:
|
paths:
|
||||||
- build/nginx/**
|
- images/nginx/**
|
||||||
- build/socketio/**
|
- images/socketio/**
|
||||||
- build/worker/**
|
- images/worker/**
|
||||||
- overrides/**
|
- overrides/**
|
||||||
- tests/**
|
- tests/**
|
||||||
- compose.yaml
|
- compose.yaml
|
||||||
|
|||||||
12
.github/workflows/build_stable.yml
vendored
12
.github/workflows/build_stable.yml
vendored
@@ -5,9 +5,9 @@ on:
|
|||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
paths:
|
paths:
|
||||||
- build/nginx/**
|
- images/nginx/**
|
||||||
- build/socketio/**
|
- images/socketio/**
|
||||||
- build/worker/**
|
- images/worker/**
|
||||||
- overrides/**
|
- overrides/**
|
||||||
- tests/**
|
- tests/**
|
||||||
- compose.yaml
|
- compose.yaml
|
||||||
@@ -18,9 +18,9 @@ on:
|
|||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
paths:
|
paths:
|
||||||
- build/nginx/**
|
- images/nginx/**
|
||||||
- build/socketio/**
|
- images/socketio/**
|
||||||
- build/worker/**
|
- images/worker/**
|
||||||
- overrides/**
|
- overrides/**
|
||||||
- tests/**
|
- tests/**
|
||||||
- compose.yaml
|
- compose.yaml
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ variable "ERPNEXT_VERSION" {
|
|||||||
# Bench image
|
# Bench image
|
||||||
|
|
||||||
target "bench" {
|
target "bench" {
|
||||||
context = "build/bench"
|
context = "images/bench"
|
||||||
target = "bench"
|
target = "bench"
|
||||||
tags = ["frappe/bench:latest"]
|
tags = ["frappe/bench:latest"]
|
||||||
}
|
}
|
||||||
@@ -62,34 +62,34 @@ target "default-args" {
|
|||||||
|
|
||||||
target "frappe-worker" {
|
target "frappe-worker" {
|
||||||
inherits = ["default-args"]
|
inherits = ["default-args"]
|
||||||
context = "build/worker"
|
context = "images/worker"
|
||||||
target = "frappe"
|
target = "frappe"
|
||||||
tags = tag("frappe-worker", "${FRAPPE_VERSION}")
|
tags = tag("frappe-worker", "${FRAPPE_VERSION}")
|
||||||
}
|
}
|
||||||
|
|
||||||
target "erpnext-worker" {
|
target "erpnext-worker" {
|
||||||
inherits = ["default-args"]
|
inherits = ["default-args"]
|
||||||
context = "build/worker"
|
context = "images/worker"
|
||||||
target = "erpnext"
|
target = "erpnext"
|
||||||
tags = tag("erpnext-worker", "${ERPNEXT_VERSION}")
|
tags = tag("erpnext-worker", "${ERPNEXT_VERSION}")
|
||||||
}
|
}
|
||||||
|
|
||||||
target "frappe-nginx" {
|
target "frappe-nginx" {
|
||||||
inherits = ["default-args"]
|
inherits = ["default-args"]
|
||||||
context = "build/nginx"
|
context = "images/nginx"
|
||||||
target = "frappe"
|
target = "frappe"
|
||||||
tags = tag("frappe-nginx", "${FRAPPE_VERSION}")
|
tags = tag("frappe-nginx", "${FRAPPE_VERSION}")
|
||||||
}
|
}
|
||||||
|
|
||||||
target "erpnext-nginx" {
|
target "erpnext-nginx" {
|
||||||
inherits = ["default-args"]
|
inherits = ["default-args"]
|
||||||
context = "build/nginx"
|
context = "images/nginx"
|
||||||
target = "erpnext"
|
target = "erpnext"
|
||||||
tags = tag("erpnext-nginx", "${ERPNEXT_VERSION}")
|
tags = tag("erpnext-nginx", "${ERPNEXT_VERSION}")
|
||||||
}
|
}
|
||||||
|
|
||||||
target "frappe-socketio" {
|
target "frappe-socketio" {
|
||||||
inherits = ["default-args"]
|
inherits = ["default-args"]
|
||||||
context = "build/socketio"
|
context = "images/socketio"
|
||||||
tags = tag("frappe-socketio", "${FRAPPE_VERSION}")
|
tags = tag("frappe-socketio", "${FRAPPE_VERSION}")
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user