Skip to content

Commit 82d2371

Browse files
mrnicegyu11Dustin Kaisersanderegg
authored
šŸ›Fix storage service in local deployment with self signed SSL certificates (ITISFoundation#2670)
* Add call to update ca certificates in docker entrypoint script * Update services/storage/docker/entrypoint.sh Fix comment Co-authored-by: Sylvain <[email protected]> Co-authored-by: Dustin Kaiser <[email protected]> Co-authored-by: Sylvain <[email protected]>
1 parent 3155823 commit 82d2371

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

ā€Žservices/storage/docker/entrypoint.shā€Ž

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,14 @@ INFO="INFO: [$(basename "$0")] "
88
WARNING="WARNING: [$(basename "$0")] "
99
ERROR="ERROR: [$(basename "$0")] "
1010

11+
# Read self-signed SSH certificates (if applicable)
12+
#
13+
# In case storage must access a docker registry in a secure way using
14+
# non-standard certificates (e.g. such as self-signed certificates), this call is needed.
15+
# It needs to be executed as root.
16+
update-ca-certificates
17+
18+
1119
# This entrypoint script:
1220
#
1321
# - Executes *inside* of the container upon start as --user [default root]

0 commit comments

Comments
Ā (0)