diff --git a/charts/dev/docker-compose/CHANGELOG.md b/charts/dev/docker-compose/CHANGELOG.md
index 332b7a1dd63..5bfdc01dbd3 100644
--- a/charts/dev/docker-compose/CHANGELOG.md
+++ b/charts/dev/docker-compose/CHANGELOG.md
@@ -1,6 +1,15 @@
# Changelog
+
+### [docker-compose-0.0.3](https://github.com/truecharts/apps/compare/docker-compose-0.0.2...docker-compose-0.0.3) (2022-02-24)
+
+#### Feat
+
+* Add autoloading for compose file ([#1958](https://github.com/truecharts/apps/issues/1958))
+
+
+
### [docker-compose-0.0.2](https://github.com/truecharts/apps/compare/docker-compose-0.0.1...docker-compose-0.0.2) (2022-02-24)
diff --git a/charts/dev/docker-compose/helm-values.md b/charts/dev/docker-compose/helm-values.md
index 828c079376c..481b391db05 100644
--- a/charts/dev/docker-compose/helm-values.md
+++ b/charts/dev/docker-compose/helm-values.md
@@ -18,11 +18,21 @@ You will, however, be able to use all values referenced in the common chart here
| controller.rollingUpdate.unavailable | int | `1` | Set deployment RollingUpdate max unavailable |
| controller.strategy | string | `"RollingUpdate"` | Set the controller upgrade strategy For Deployments, valid values are Recreate (default) and RollingUpdate. For StatefulSets, valid values are OnDelete and RollingUpdate (default). DaemonSets ignore this. |
| controller.type | string | `"statefulset"` | Set the controller type. Valid options are deployment, daemonset or statefulset |
+| env.COMPOSE_FILE | string | `""` | |
| env.DOCKER_TLS_CERTDIR | string | `"/certs"` | |
| hostNetwork | bool | `true` | |
| image.pullPolicy | string | `"IfNotPresent"` | |
| image.repository | string | `"tccr.io/truecharts/docker-in-docker"` | |
| image.tag | string | `"v20.10.12@sha256:c62daf2fbd0b520a5849a5b463b059207e3669c892131eff1f0cf22d3b053deb"` | |
+| lifecycle.postStart.exec.command[0] | string | `"/bin/sh"` | |
+| lifecycle.postStart.exec.command[1] | string | `"-c"` | |
+| lifecycle.postStart.exec.command[2] | string | `"sleep 20 && if [ ${COMPOSE_FILE} ]; then docker-compose up -d -f ${COMPOSE_FILE} && echo \"Loading COMPOSE_FILE at location ${COMPOSE_FILE}\"; else echo \"COMPOSE_FILE not set, not auto-loading compose-file\"; fi"` | |
+| persistence.cluster.enabled | bool | `true` | |
+| persistence.cluster.hostPath | string | `"/cluster"` | |
+| persistence.cluster.hostPathType | string | `""` | |
+| persistence.cluster.mountPath | string | `"/cluster"` | |
+| persistence.cluster.readOnly | bool | `false` | |
+| persistence.cluster.type | string | `"hostPath"` | |
| persistence.docker-certs-ca.enabled | bool | `true` | |
| persistence.docker-certs-ca.mountPath | string | `"/config"` | |
| persistence.mnt.enabled | bool | `true` | |
@@ -41,6 +51,9 @@ You will, however, be able to use all values referenced in the common chart here
| podSecurityContext.fsGroup | int | `0` | |
| podSecurityContext.runAsGroup | int | `0` | |
| podSecurityContext.runAsUser | int | `0` | |
+| probes.liveness.spec.initialDelaySeconds | int | `30` | |
+| probes.readiness.spec.initialDelaySeconds | int | `30` | |
+| probes.startup.spec.initialDelaySeconds | int | `30` | |
| securityContext.allowPrivilegeEscalation | bool | `true` | |
| securityContext.privileged | bool | `true` | |
| securityContext.readOnlyRootFilesystem | bool | `false` | |
diff --git a/docs/apps/dev/docker-compose/CHANGELOG.md b/docs/apps/dev/docker-compose/CHANGELOG.md
index 332b7a1dd63..5bfdc01dbd3 100644
--- a/docs/apps/dev/docker-compose/CHANGELOG.md
+++ b/docs/apps/dev/docker-compose/CHANGELOG.md
@@ -1,6 +1,15 @@
# Changelog
+
+### [docker-compose-0.0.3](https://github.com/truecharts/apps/compare/docker-compose-0.0.2...docker-compose-0.0.3) (2022-02-24)
+
+#### Feat
+
+* Add autoloading for compose file ([#1958](https://github.com/truecharts/apps/issues/1958))
+
+
+
### [docker-compose-0.0.2](https://github.com/truecharts/apps/compare/docker-compose-0.0.1...docker-compose-0.0.2) (2022-02-24)
diff --git a/docs/apps/dev/docker-compose/helm-values.md b/docs/apps/dev/docker-compose/helm-values.md
index 828c079376c..481b391db05 100644
--- a/docs/apps/dev/docker-compose/helm-values.md
+++ b/docs/apps/dev/docker-compose/helm-values.md
@@ -18,11 +18,21 @@ You will, however, be able to use all values referenced in the common chart here
| controller.rollingUpdate.unavailable | int | `1` | Set deployment RollingUpdate max unavailable |
| controller.strategy | string | `"RollingUpdate"` | Set the controller upgrade strategy For Deployments, valid values are Recreate (default) and RollingUpdate. For StatefulSets, valid values are OnDelete and RollingUpdate (default). DaemonSets ignore this. |
| controller.type | string | `"statefulset"` | Set the controller type. Valid options are deployment, daemonset or statefulset |
+| env.COMPOSE_FILE | string | `""` | |
| env.DOCKER_TLS_CERTDIR | string | `"/certs"` | |
| hostNetwork | bool | `true` | |
| image.pullPolicy | string | `"IfNotPresent"` | |
| image.repository | string | `"tccr.io/truecharts/docker-in-docker"` | |
| image.tag | string | `"v20.10.12@sha256:c62daf2fbd0b520a5849a5b463b059207e3669c892131eff1f0cf22d3b053deb"` | |
+| lifecycle.postStart.exec.command[0] | string | `"/bin/sh"` | |
+| lifecycle.postStart.exec.command[1] | string | `"-c"` | |
+| lifecycle.postStart.exec.command[2] | string | `"sleep 20 && if [ ${COMPOSE_FILE} ]; then docker-compose up -d -f ${COMPOSE_FILE} && echo \"Loading COMPOSE_FILE at location ${COMPOSE_FILE}\"; else echo \"COMPOSE_FILE not set, not auto-loading compose-file\"; fi"` | |
+| persistence.cluster.enabled | bool | `true` | |
+| persistence.cluster.hostPath | string | `"/cluster"` | |
+| persistence.cluster.hostPathType | string | `""` | |
+| persistence.cluster.mountPath | string | `"/cluster"` | |
+| persistence.cluster.readOnly | bool | `false` | |
+| persistence.cluster.type | string | `"hostPath"` | |
| persistence.docker-certs-ca.enabled | bool | `true` | |
| persistence.docker-certs-ca.mountPath | string | `"/config"` | |
| persistence.mnt.enabled | bool | `true` | |
@@ -41,6 +51,9 @@ You will, however, be able to use all values referenced in the common chart here
| podSecurityContext.fsGroup | int | `0` | |
| podSecurityContext.runAsGroup | int | `0` | |
| podSecurityContext.runAsUser | int | `0` | |
+| probes.liveness.spec.initialDelaySeconds | int | `30` | |
+| probes.readiness.spec.initialDelaySeconds | int | `30` | |
+| probes.startup.spec.initialDelaySeconds | int | `30` | |
| securityContext.allowPrivilegeEscalation | bool | `true` | |
| securityContext.privileged | bool | `true` | |
| securityContext.readOnlyRootFilesystem | bool | `false` | |
diff --git a/docs/index.yaml b/docs/index.yaml
index 81a51bf7410..f72c63077e9 100644
--- a/docs/index.yaml
+++ b/docs/index.yaml
@@ -9574,6 +9574,38 @@ entries:
- https://github.com/truecharts/apps/releases/download/dizquetv-4.0.19/dizquetv-4.0.19.tgz
version: 4.0.19
docker-compose:
+ - annotations:
+ truecharts.org/SCALE-support: "true"
+ truecharts.org/catagories: |
+ - docker
+ - test
+ truecharts.org/grade: U
+ apiVersion: v2
+ appVersion: 20.10.12
+ created: "2022-02-24T19:58:19.431561679Z"
+ dependencies:
+ - name: common
+ repository: https://truecharts.org
+ version: 8.16.0
+ description: Dedicated App for using Docker-Compose on TrueNAS SCALE
+ digest: 21878dbc363fe4e76e185d8b17d3fb0a8414445a7671e2158596cac7209b909c
+ home: https://github.com/truecharts/apps/tree/master/charts/dev/docker-compose
+ icon: https://truecharts.org/_static/img/appicons/docker-compose-icon.png
+ keywords:
+ - docker-compose
+ - docker
+ kubeVersion: '>=1.16.0-0'
+ maintainers:
+ - email: info@truecharts.org
+ name: TrueCharts
+ url: https://truecharts.org
+ name: docker-compose
+ sources:
+ - https://github.com/Jackett/Jackett
+ type: application
+ urls:
+ - https://github.com/truecharts/apps/releases/download/docker-compose-0.0.3/docker-compose-0.0.3.tgz
+ version: 0.0.3
- annotations:
truecharts.org/SCALE-support: "true"
truecharts.org/catagories: |
@@ -64467,4 +64499,4 @@ entries:
urls:
- https://github.com/truecharts/apps/releases/download/zwavejs2mqtt-9.0.24/zwavejs2mqtt-9.0.24.tgz
version: 9.0.24
-generated: "2022-02-24T18:23:57.775303025Z"
+generated: "2022-02-24T19:58:19.436955779Z"