Skip to content

Commit

Permalink
Merge tag 'v3.9.0' into develop
Browse files Browse the repository at this point in the history
Environment rework
  • Loading branch information
dlen committed Jan 31, 2023
2 parents d46187e + b55beca commit 367d8bb
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 12 deletions.
17 changes: 16 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,22 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased](https://github.com/passbolt/passbolt_docker/compare/v3.8.1...HEAD)
## [Unreleased](https://github.com/passbolt/passbolt_docker/compare/v3.9.0...HEAD)

## [3.9.0](https://github.com/passbolt/passbolt_docker/compare/v3.8.1...v3.9.0) - 2023-01-31

### Changed

- Now environment is dumped during entrypoint script running instead of during cron runs
- Migrations are executed without clearing the cache by default and only core and model caches are cleared.

### Added

- Development only: Configuration for xdebug to ease working with IDES

### Fixed

- Ports for rootless version pointing to 4433 on docker-compose files

## [3.8.1](https://github.com/passbolt/passbolt_docker/compare/v3.8.0...v3.8.1) - 2023-01-18

Expand Down
8 changes: 0 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -180,14 +180,6 @@ $ export PASSBOLT_GPG_SERVER_KEY_FINGERPRINT="$(su -c "gpg --homedir $GNUPGHOME
$ bin/cake passbolt healthcheck
```

## CI passbolt Docker images building

In order to pull custom images from the Gitlab registry, you need to set this variables and assuming you are not using a self-hosted gitlab instance:

REGISTRY_USERNAME=<username>
REGISTRY_PASSWORD=<password>
REGISTRY_EMAIL=<email>

## Docker secrets support

As an alternative to passing sensitive information via environment variables, _FILE may be appended to the previously listed environment variables, causing the initialization script to load the values for those variables from files present in the container. In particular, this can be used to load passwords from Docker secrets stored in /run/secrets/<secret_name> files. For example:
Expand Down
2 changes: 1 addition & 1 deletion docker-compose/docker-compose-ce-postgresql.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ services:
- 443:443
#Alternatively for non-root images:
# - 8080:80
# - 4443:433
# - 4433:433

volumes:
database_volume:
Expand Down
2 changes: 1 addition & 1 deletion docker-compose/docker-compose-ce.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ services:
- 443:443
#Alternatively for non-root images:
# - 8080:80
# - 4443:433
# - 4433:433

volumes:
database_volume:
Expand Down
2 changes: 1 addition & 1 deletion docker-compose/docker-compose-pro.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ services:
- 443:443
#Alternatively for non-root images:
# - 8080:80
# - 4443:433
# - 4433:433

volumes:
database_volume:
Expand Down

0 comments on commit 367d8bb

Please sign in to comment.