core and periphery images auto run update-ca-certificates on start, only need to mount in.

This commit is contained in:
mbecker20
2025-10-18 11:35:45 -07:00
parent ec34b2c139
commit 36f7ad33c7
6 changed files with 6 additions and 6 deletions

View File

@@ -55,7 +55,7 @@ ENV KOMODO_CLI_CONFIG_PATHS="/config"
# This ensures any `komodo.cli.*` takes precedence over the Core `/config/*config.*`
ENV KOMODO_CLI_CONFIG_KEYWORDS="*config.*,*komodo.cli*.*"
CMD [ "core" ]
CMD [ "/bin/bash", "-c", "update-ca-certificates && core" ]
# Label to prevent Komodo from stopping with StopAllContainers
LABEL komodo.skip="true"

View File

@@ -51,7 +51,7 @@ ENV KOMODO_CLI_CONFIG_PATHS="/config"
# This ensures any `komodo.cli.*` takes precedence over the Core `/config/*config.*`
ENV KOMODO_CLI_CONFIG_KEYWORDS="*config.*,*komodo.cli*.*"
CMD [ "core" ]
CMD [ "/bin/bash", "-c", "update-ca-certificates && core" ]
# Label to prevent Komodo from stopping with StopAllContainers
LABEL komodo.skip="true"

View File

@@ -40,7 +40,7 @@ ENV KOMODO_CLI_CONFIG_PATHS="/config"
# This ensures any `komodo.cli.*` takes precedence over the Core `/config/*config.*`
ENV KOMODO_CLI_CONFIG_KEYWORDS="*config.*,*komodo.cli*.*"
CMD [ "core" ]
CMD [ "/bin/bash", "-c", "update-ca-certificates && core" ]
# Label to prevent Komodo from stopping with StopAllContainers
LABEL komodo.skip="true"

View File

@@ -29,7 +29,7 @@ ENV PERIPHERY_CONFIG_PATHS="/config"
# Change the default in container to /config/keys to match Core
ENV PERIPHERY_PRIVATE_KEY="file:/config/keys/periphery.key"
CMD [ "periphery" ]
CMD [ "/bin/bash", "-c", "update-ca-certificates && periphery" ]
# Label to prevent Komodo from stopping with StopAllContainers
LABEL komodo.skip="true"

View File

@@ -32,7 +32,7 @@ ENV PERIPHERY_CONFIG_PATHS="/config"
# Change the default in container to /config/keys to match Core
ENV PERIPHERY_PRIVATE_KEY="file:/config/keys/periphery.key"
CMD [ "periphery" ]
CMD [ "/bin/bash", "-c", "update-ca-certificates && periphery" ]
# Label to prevent Komodo from stopping with StopAllContainers
LABEL komodo.skip="true"

View File

@@ -21,7 +21,7 @@ ENV PERIPHERY_CONFIG_PATHS="/config"
# Change the default in container to /config/keys to match Core
ENV PERIPHERY_PRIVATE_KEY="file:/config/keys/periphery.key"
CMD [ "periphery" ]
CMD [ "/bin/bash", "-c", "update-ca-certificates && periphery" ]
# Label to prevent Komodo from stopping with StopAllContainers
LABEL komodo.skip="true"