-
Notifications
You must be signed in to change notification settings - Fork 197
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
95 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
on: | ||
push: | ||
tags: | ||
- '*' | ||
jobs: | ||
create-shasums: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- run: | | ||
cd docker-compose | ||
sha512sum docker-compose-ce.yaml > docker-compose-ce-SHA512SUM.txt && | ||
sha512sum docker-compose-pro.yaml > docker-compose-pro-SHA512SUM.txt && | ||
sha512sum docker-compose-dev.yaml > docker-compose-dev-SHA512SUM.txt && | ||
sha512sum docker-compose-ce-postgresql.yaml > docker-compose-ce-postgresql-SHA512SUM.txt | ||
- uses: ncipollo/release-action@v1 | ||
with: | ||
artifacts: "docker-compose/docker-compose-*.yaml, docker-compose/*SHA512SUM.txt" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
.upload-files: | ||
stage: upload-assets | ||
image: registry.gitlab.com/passbolt/passbolt-ci-docker-images/gcloud | ||
variables: | ||
BUCKET: "gs://download.passbolt.com" | ||
PREFIX: "ce/docker" | ||
before_script: | ||
gcloud auth activate-service-account --key-file "$BUCKET_SVC_ACC" | ||
after_script: | ||
gsutil -m setmeta -r -h "Content-Type:text/html" \ | ||
-h "Cache-Control:no-cache" \ | ||
"gs://$BUCKET/$PREFIX/*" | ||
rules: | ||
- if: '$CI_COMMIT_TAG != null' | ||
|
||
upload-ce-files: | ||
extends: .upload-files | ||
script: | | ||
gsutil cp docker-compose/docker-compose-ce.yaml "$BUCKET/$PREFIX/docker-compose-ce.yaml" | ||
gsutil cp docker-compose/docker-compose-ce-postgresql.yaml "$BUCKET/$PREFIX/docker-compose-ce-postgresql.yaml" | ||
upload-pro-files: | ||
extends: .upload-files | ||
variables: | ||
BUCKET: "gs://download.passbolt.com" | ||
PREFIX: "pro/docker" | ||
script: | | ||
gsutil cp docker-compose/docker-compose-pro.yaml "$BUCKET/$PREFIX/docker-compose-pro.yaml" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -106,8 +106,8 @@ Passbolt docker image provides several environment variables to configure differ | |
| EMAIL_TRANSPORT_DEFAULT_TLS | Set tls | null | ||
| EMAIL_TRANSPORT_DEFAULT_URL | Set url | null | ||
| GNUPGHOME | path to gnupghome directory | /var/lib/passbolt/.gnupg | ||
| PASSBOLT_KEY_LENGTH | Gpg desired key length | 2048 | ||
| PASSBOLT_SUBKEY_LENGTH | Gpg desired subkey length | 2048 | ||
| PASSBOLT_KEY_LENGTH | Gpg desired key length | 3072 | ||
| PASSBOLT_SUBKEY_LENGTH | Gpg desired subkey length | 3072 | ||
| PASSBOLT_KEY_NAME | Key owner name | Passbolt default user | ||
| PASSBOLT_KEY_EMAIL | Key owner email address | [email protected] | ||
| PASSBOLT_KEY_EXPIRATION | Key expiration date | 0, never expires | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM php:7.4-fpm | ||
FROM php:8-fpm | ||
|
||
LABEL maintainer="Passbolt SA <[email protected]>" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters