Skip to content

Commit

Permalink
Moved all Containerfile to Dockerfile
Browse files Browse the repository at this point in the history
Seems that docker has a hard time using containerfile references, for
example .containerignore was not used, reverting this renaming to allow
docker to work properly
  • Loading branch information
Tbaile committed Oct 25, 2022
1 parent 2b37c0e commit bc29a53
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 11 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions docker-bake.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ variable "REPOSITORY" {
}

variable "TAG" {
default = "master"
default = "latest"
}

target "base" {
Expand All @@ -17,7 +17,7 @@ target "base" {

target "app" {
inherits = ["base"]
dockerfile = "containers/php/Containerfile"
dockerfile = "containers/php/Dockerfile"
cache-from = [
"type=registry,ref=${REGISTRY}/${REPOSITORY}-app:latest",
"type=registry,ref=${REGISTRY}/${REPOSITORY}-app:master",
Expand Down Expand Up @@ -46,7 +46,7 @@ target "app-develop" {

target "web" {
inherits = ["base"]
dockerfile = "containers/nginx/Containerfile"
dockerfile = "containers/nginx/Dockerfile"
cache-from = [
"type=registry,ref=${REGISTRY}/${REPOSITORY}-web:latest",
"type=registry,ref=${REGISTRY}/${REPOSITORY}-web:master",
Expand Down
8 changes: 0 additions & 8 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,6 @@
"patch": {
"automerge": true
},
"dockerfile": {
"fileMatch": [
"(^|/|\\.)Dockerfile$",
"(^|/)Dockerfile[^/]*$",
"(^|/|\\.)Containerfile$",
"(^|/)Containerfile[^/]*$"
]
},
"schedule": [
"* 2 * * 1"
],
Expand Down

0 comments on commit bc29a53

Please sign in to comment.