Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
Metabase
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Engineering Digital Service
Metabase
Commits
e2147a26
Unverified
Commit
e2147a26
authored
4 years ago
by
Luis Paolini
Committed by
GitHub
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Add AWS and Azure PEMs for SSL in connecting to managed databases (#15025)
parent
d7146389
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
bin/docker/Dockerfile
+8
-4
8 additions, 4 deletions
bin/docker/Dockerfile
with
8 additions
and
4 deletions
bin/docker/Dockerfile
+
8
−
4
View file @
e2147a26
...
...
@@ -3,14 +3,18 @@ FROM adoptopenjdk/openjdk11:alpine-jre
ENV
FC_LANG en-US LC_CTYPE en_US.UTF-8
# dependencies
RUN
apk
-U
upgrade
&&
apk add
--update
--no-cache
bash ttf-dejavu fontconfig
RUN
apk
-U
upgrade
&&
\
apk add
--update
--no-cache
bash ttf-dejavu fontconfig curl java-cacerts
&&
\
mkdir
-p
/app/certs
&&
\
curl https://s3.amazonaws.com/rds-downloads/rds-combined-ca-bundle.pem
-o
/app/certs/rds-combined-ca-bundle.pem
&&
\
/opt/java/openjdk/bin/keytool
-noprompt
-import
-trustcacerts
-alias
aws-rds
-file
/app/certs/rds-combined-ca-bundle.pem
-keystore
/etc/ssl/certs/java/cacerts
-keypass
changeit
-storepass
changeit
&&
\
curl https://cacerts.digicert.com/DigiCertGlobalRootG2.crt.pem
-o
/app/certs/DigiCertGlobalRootG2.crt.pem
&&
\
/opt/java/openjdk/bin/keytool
-noprompt
-import
-trustcacerts
-alias
azure-cert
-file
/app/certs/DigiCertGlobalRootG2.crt.pem
-keystore
/etc/ssl/certs/java/cacerts
-keypass
changeit
-storepass
changeit
&&
\
mkdir
-p
/plugins
&&
chmod
a+rwx /plugins
# add Metabase jar & add our run script to the image
COPY
./metabase.jar ./run_metabase.sh /app/
# create the plugins directory, with writable permissions
RUN
mkdir
-p
/plugins
&&
chmod
a+rwx /plugins
# expose our default runtime port
EXPOSE
3000
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment