Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2022-10-16 19:45:35 +00:00
parent c5b741df2a
commit 1df7ee3710
10 changed files with 45 additions and 58 deletions

View File

@ -2,6 +2,20 @@
## [docker-compose-2.1.0](https://github.com/truecharts/charts/compare/docker-compose-2.0.52...docker-compose-2.1.0) (2022-10-16)
### Chore
- Auto-update chart README [skip ci]
### Fix
- remove /mnt and /root ([#4115](https://github.com/truecharts/charts/issues/4115))
- remove /mnt for bluefin
## [docker-compose-2.0.52](https://github.com/truecharts/charts/compare/docker-compose-2.0.51...docker-compose-2.0.52) (2022-10-14) ## [docker-compose-2.0.52](https://github.com/truecharts/charts/compare/docker-compose-2.0.51...docker-compose-2.0.52) (2022-10-14)
### Chore ### Chore
@ -83,17 +97,3 @@
### Chore ### Chore
- Auto-update chart README [skip ci] - Auto-update chart README [skip ci]
- update helm general non-major ([#3918](https://github.com/truecharts/charts/issues/3918))
## [docker-compose-2.0.45](https://github.com/truecharts/charts/compare/docker-compose-2.0.44...docker-compose-2.0.45) (2022-09-25)
### Chore
- Auto-update chart README [skip ci]
- update helm general non-major ([#3898](https://github.com/truecharts/charts/issues/3898))

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://library-charts.truecharts.org repository: https://library-charts.truecharts.org
version: 10.7.0 version: 10.7.0
digest: sha256:a792707805bae88e565e13c3319a32f94333d185590628b1cbef5c9cbe126a6a digest: sha256:a792707805bae88e565e13c3319a32f94333d185590628b1cbef5c9cbe126a6a
generated: "2022-10-15T00:16:55.473786899Z" generated: "2022-10-16T19:43:57.257472966Z"

View File

@ -21,7 +21,7 @@ sources:
- https://github.com/truecharts/charts/tree/master/charts/stable/docker-compose - https://github.com/truecharts/charts/tree/master/charts/stable/docker-compose
- https://hub.docker.com/_/docker - https://hub.docker.com/_/docker
type: application type: application
version: 2.0.52 version: 2.1.0
annotations: annotations:
truecharts.org/catagories: | truecharts.org/catagories: |
- docker - docker

View File

@ -46,15 +46,15 @@ service:
type: HTTPS type: HTTPS
env: env:
DOCKER_TLS_CERTDIR: "/certs" DOCKER_TLS_CERTDIR: /certs
COMPOSE_FILE: "" COMPOSE_FILE: ""
lifecycle: lifecycle:
postStart: postStart:
exec: exec:
command: command:
- "/bin/bash" - /bin/bash
- "-c" - -c
- | - |
if [ "${COMPOSE_FILE}" ]; then if [ "${COMPOSE_FILE}" ]; then
counter=0; counter=0;
@ -81,31 +81,17 @@ probes:
persistence: persistence:
varrun: varrun:
enabled: false enabled: false
mnt:
enabled: true
type: hostPath
hostPath: /mnt
mountPath: /mnt
hostPathType: ""
readOnly: false
root:
enabled: true
type: hostPath
hostPath: /root
mountPath: /root
hostPathType: ""
readOnly: false
docker-certs-ca: docker-certs-ca:
enabled: true enabled: true
mountPath: "/config" mountPath: /config
volumeClaimTemplates: volumeClaimTemplates:
docker-certs-client: docker-certs-client:
enabled: true enabled: true
mountPath: "/certs/client" mountPath: /certs/client
docker: docker:
enabled: true enabled: true
mountPath: "/var/lib/docker" mountPath: /var/lib/docker
portal: portal:
enabled: false enabled: false

View File

@ -158,17 +158,18 @@ questions:
schema: schema:
type: string type: string
- variable: env - variable: env
group: "Container Configuration" group: Container Configuration
label: "Image Environment" label: Image Environment
schema: schema:
additional_attrs: true additional_attrs: true
type: dict type: dict
attrs: attrs:
- variable: COMPOSE_FILE - variable: COMPOSE_FILE
label: "COMPOSE_FILE" label: Docker Compose File
description: "Path on the host of the composefile you want to load. Supported are paths inside /mnt, /root and /cluster" description: Path on the host of the compose file you want to load. You MUST mount the storage yourself
schema: schema:
type: string type: string
default: ""
- variable: TZ - variable: TZ
label: Timezone label: Timezone
group: Container Configuration group: Container Configuration
@ -982,22 +983,22 @@ questions:
type: dict type: dict
attrs: attrs:
- variable: privileged - variable: privileged
label: "Privileged mode" label: Privileged mode
schema: schema:
type: boolean type: boolean
default: true default: true
- variable: readOnlyRootFilesystem - variable: readOnlyRootFilesystem
label: "ReadOnly Root Filesystem" label: ReadOnly Root Filesystem
schema: schema:
type: boolean type: boolean
default: false default: false
- variable: allowPrivilegeEscalation - variable: allowPrivilegeEscalation
label: "Allow Privilege Escalation" label: Allow Privilege Escalation
schema: schema:
type: boolean type: boolean
default: true default: true
- variable: runAsNonRoot - variable: runAsNonRoot
label: "runAsNonRoot" label: runAsNonRoot
schema: schema:
type: boolean type: boolean
default: false default: false
@ -1035,20 +1036,20 @@ questions:
type: dict type: dict
attrs: attrs:
- variable: runAsUser - variable: runAsUser
label: "runAsUser" label: runAsUser
description: "The UserID of the user running the application" description: The UserID of the user running the application
schema: schema:
type: int type: int
default: 0 default: 0
- variable: runAsGroup - variable: runAsGroup
label: "runAsGroup" label: runAsGroup
description: "The groupID this App of the user running the application" description: The groupID this App of the user running the application
schema: schema:
type: int type: int
default: 0 default: 0
- variable: fsGroup - variable: fsGroup
label: "fsGroup" label: fsGroup
description: "The group that should own ALL storage." description: The group that should own ALL storage.
schema: schema:
type: int type: int
default: 0 default: 0