-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* prepare for 2024.1 * prepare for 2024.1 * added documentation * fixed docs versions * Update 2024.1.md Added: [Core Framework] Gotenberg v2 support [Core Framework] QuantityValueRange in Classification store [Admin UI Classic Bundle] Many-to-many relations: multi-file upload [Data Hub File Export] Use dedicated queue for file export [Data Hub Webhooks] Added permissions for webhooks [Alternative Elements Trees] Added more data types [Portal Engine] Removed ongr support to the improvements * improved upgrade notes and fixed #29 * Update 2024.1.md Added description for Gotenberg. * updated versions * Update portal engine to 4.0.1 * updated upgrade notes * Update composer.json * Revert to 3.0.0 since 3.0.1 is not released yet * Update data-hub-simple-rest to 3.0.1 again * update composer.json * update upgrade notes * added asset-meta-data * added asset-meta-data * updated pimcore/pimcore * fixing docs * removing env variables * fixing docs * added installation for copilot bundle --------- Co-authored-by: heigpa <[email protected]> Co-authored-by: mattamon <[email protected]>
- Loading branch information
1 parent
71dd947
commit 922c33b
Showing
17 changed files
with
315 additions
and
73 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
This file was deleted.
Oops, something went wrong.
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
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,70 @@ | ||
services: | ||
redis: | ||
image: redis:alpine | ||
command: [ redis-server, --maxmemory 128mb, --maxmemory-policy volatile-lru, --save "" ] | ||
|
||
db: | ||
image: mariadb:10.11 | ||
working_dir: /application | ||
command: [ mysqld, --character-set-server=utf8mb4, --collation-server=utf8mb4_general_ci, --innodb-file-per-table=1 ] | ||
volumes: | ||
- pimcore-database:/var/lib/mysql | ||
environment: | ||
- MYSQL_ROOT_PASSWORD=ROOT | ||
- MYSQL_DATABASE=pimcore | ||
- MYSQL_USER=pimcore | ||
- MYSQL_PASSWORD=pimcore | ||
healthcheck: | ||
# The service is considered healthy when: | ||
# - connection to pimcore db can be established, and | ||
# - we can run a simple SQL query. | ||
test: [ "CMD-SHELL", "mysql -h db -u$$MYSQL_USER -p$$MYSQL_PASSWORD $$MYSQL_DATABASE -e 'SHOW TABLES;'" ] | ||
interval: 10s | ||
retries: 6 | ||
start_period: 1m | ||
timeout: 3s | ||
|
||
nginx: | ||
image: nginx:stable-alpine | ||
ports: | ||
- "80:80" | ||
volumes: | ||
- .:/var/www/html:ro | ||
- ./.docker/nginx.conf:/etc/nginx/conf.d/default.conf:ro | ||
depends_on: | ||
- php | ||
|
||
php: | ||
#user: '1000:1000' # set to your uid:gid | ||
image: pimcore/pimcore:php8.2-debug-latest | ||
environment: | ||
COMPOSER_HOME: /var/www/html | ||
PHP_IDE_CONFIG: serverName=localhost | ||
# Feed installer configuration via ENV variables. | ||
# See: https://pimcore.com/docs/pimcore/current/Development_Documentation/Getting_Started/Advanced_Installation_Topics.html#page_Advanced-Installation-Topics | ||
PIMCORE_INSTALL_MYSQL_USERNAME: pimcore | ||
PIMCORE_INSTALL_MYSQL_PASSWORD: pimcore | ||
PIMCORE_INSTALL_MYSQL_PORT: 3306 | ||
PIMCORE_INSTALL_MYSQL_HOST_SOCKET: db | ||
PIMCORE_INSTALL_MYSQL_DATABASE: pimcore | ||
depends_on: | ||
db: | ||
condition: service_healthy | ||
volumes: | ||
- .:/var/www/html | ||
|
||
supervisord: | ||
#user: '1000:1000' # set to your uid:gid | ||
image: pimcore/pimcore:php8.2-supervisord-latest | ||
depends_on: | ||
db: | ||
condition: service_healthy | ||
volumes: | ||
- .:/var/www/html | ||
- ./.docker/supervisord.conf:/etc/supervisor/conf.d/pimcore.conf:ro | ||
|
||
volumes: | ||
pimcore-database: | ||
pimcore-test-database: | ||
pimcore-test-var: | ||
pimcore-test-public-var: |
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,6 +1,3 @@ | ||
parameters: | ||
secret: 'some-secret-value' | ||
app_encryption_secret: 'some-more-secret' | ||
es_client: 'elastic' | ||
pimcore_portal_engine.elasticsearch.host: 'elastic' | ||
pimcore_portal_engine.elasticsearch.index_prefix: 'portal_' | ||
app_encryption_secret: 'some-more-secret' |
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
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
Oops, something went wrong.