Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
CaosDB Docker
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
caosdb
Software
CaosDB Docker
Commits
b2a6205b
Commit
b2a6205b
authored
2 years ago
by
Florian Spreckelsen
Browse files
Options
Downloads
Plain Diff
Merge branch 'f-doc-uid' into 'main'
DOC: add a hint how to provide a readable certificate See merge request
!2
parents
c2a6cb1c
b6ed8e30
Branches
Branches containing commit
Tags
Tags containing commit
1 merge request
!2
DOC: add a hint how to provide a readable certificate
Pipeline
#29451
passed
2 years ago
Stage: info
Stage: setup
Stage: unittest
Stage: build
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitlab-ci.yml
+6
-2
6 additions, 2 deletions
.gitlab-ci.yml
README_SETUP.md
+3
-1
3 additions, 1 deletion
README_SETUP.md
compose/docker-compose.yml
+2
-0
2 additions, 0 deletions
compose/docker-compose.yml
with
11 additions
and
3 deletions
.gitlab-ci.yml
+
6
−
2
View file @
b2a6205b
...
@@ -365,7 +365,9 @@ setup-env:
...
@@ -365,7 +365,9 @@ setup-env:
# runs the unittests, currently validation tests for the profile schema
# runs the unittests, currently validation tests for the profile schema
unittest
:
unittest
:
tags
:
[
cached-dind
]
tags
:
[
cached-dind
]
image
:
"
$CI_ENVIMAGE:$CI_COMMIT_REF_NAME"
image
:
"
$CI_ENVIMAGE:dev"
# TODO: Fix this
# image: "$CI_ENVIMAGE:$CI_COMMIT_REF_NAME"
stage
:
unittest
stage
:
unittest
script
:
script
:
-
ls
-
ls
...
@@ -374,7 +376,9 @@ unittest:
...
@@ -374,7 +376,9 @@ unittest:
# builds a docker image with the LinkAhead Server
# builds a docker image with the LinkAhead Server
build
:
build
:
tags
:
[
cached-dind
]
tags
:
[
cached-dind
]
image
:
"
$CI_ENVIMAGE:$CI_COMMIT_REF_NAME"
# TODO: Fix this
# image: "$CI_ENVIMAGE:$CI_COMMIT_REF_NAME"
image
:
"
$CI_ENVIMAGE:dev"
stage
:
build
stage
:
build
inherit
:
inherit
:
variables
:
variables
:
...
...
This diff is collapsed.
Click to expand it.
README_SETUP.md
+
3
−
1
View file @
b2a6205b
...
@@ -5,7 +5,7 @@ We use docker and docker-compose to deploy CaosDB:
...
@@ -5,7 +5,7 @@ We use docker and docker-compose to deploy CaosDB:
-
Docker >= 18.02
-
Docker >= 18.02
-
docker-compose >= 1.21
-
docker-compose >= 1.21
On
a
Debian system, you can install the requirements with:
On Debian
based
system
s
, you can install the requirements with:
```
sh
```
sh
sudo
apt-get
install
docker.io docker-compose
sudo
apt-get
install
docker.io docker-compose
...
@@ -91,6 +91,8 @@ one with `openssl rsa -in oldKey.pem -out newKey.key`. If you want to use a
...
@@ -91,6 +91,8 @@ one with `openssl rsa -in oldKey.pem -out newKey.key`. If you want to use a
certificate with a passphrase instead, please refer to envoy's documentation as
certificate with a passphrase instead, please refer to envoy's documentation as
to how to configure this correctly.
to how to configure this correctly.
Make sure that envoy can read the certificate. You can set the UID for envoy in
the environment section of the envoy service in
`docker-compose.yml`
.
## Configuration
## Configuration
...
...
This diff is collapsed.
Click to expand it.
compose/docker-compose.yml
+
2
−
0
View file @
b2a6205b
...
@@ -51,6 +51,8 @@ services:
...
@@ -51,6 +51,8 @@ services:
envoy
:
envoy
:
image
:
envoyproxy/envoy:v1.21-latest
image
:
envoyproxy/envoy:v1.21-latest
# environment:
# ENVOY_UID: 987
volumes
:
volumes
:
-
type
:
bind
-
type
:
bind
read_only
:
true
read_only
:
true
...
...
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