├── .github ├── ISSUE_TEMPLATE │ ├── brew-issue.md │ ├── config.yml │ ├── den-issue.md │ ├── feature_request.md │ └── image-issue.md ├── dependabot.yml └── workflows │ ├── build-documentation.yml │ ├── docker-image-dashboard.yml │ ├── docker-image-dnsmasq.yml │ ├── docker-image-elasticsearch.yml │ ├── docker-image-magepack.yml │ ├── docker-image-mailhog.yml │ ├── docker-image-mariadb.yml │ ├── docker-image-mysql.yml │ ├── docker-image-nginx.yml │ ├── docker-image-opensearch.yml │ ├── docker-image-php-fpm.yml │ ├── docker-image-rabbitmq.yml │ ├── docker-image-redis.yml │ ├── docker-image-varnish.yml │ ├── pages.yml │ ├── php-matrix │ ├── blackfire-generator.php │ ├── constants.php │ ├── full-generator.php │ ├── node-generator.php │ └── php-generator.php │ ├── push-release-to-brew.yml │ └── tag-release.yml ├── .gitignore ├── .vscode └── settings.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── bin └── den ├── commands ├── blackfire.cmd ├── blackfire.help ├── db.cmd ├── db.help ├── debug.cmd ├── debug.help ├── env-init.cmd ├── env-init.help ├── env.cmd ├── env.help ├── install.cmd ├── redis.cmd ├── redis.help ├── shell.cmd ├── shell.help ├── sign-certificate.cmd ├── sign-certificate.help ├── status.cmd ├── status.help ├── svc.cmd ├── svc.help ├── sync.cmd ├── sync.help ├── usage.cmd ├── usage.help ├── version.cmd ├── vnc.cmd └── vnc.help ├── config ├── openssl │ ├── certificate.conf │ └── rootca.conf └── traefik │ └── traefik.yml ├── docker ├── docker-compose.yml └── portainer-service.yml ├── docs ├── .gitignore ├── Makefile ├── changelog.md ├── conf.py ├── configuration.md ├── configuration │ ├── alternative-shells.md │ ├── blackfire.md │ ├── database.md │ ├── dns-resolver.md │ ├── elasticsearch.md │ ├── livereload.md │ ├── magento2-testing.md │ ├── mftf.md │ ├── multipledomains.md │ ├── reporting.md │ ├── screenshots │ │ ├── 123906068-2ed7d180-d97c-11eb-9e52-ec48f6753ee7.png │ │ ├── 123906280-8a09c400-d97c-11eb-9558-cb513f89e4c3.png │ │ ├── 66998481-a0062100-f0d4-11e9-8cc0-a5691fee59c5.png │ │ ├── 66998483-a09eb780-f0d4-11e9-9643-8fe63dd62aad.png │ │ ├── allure-reporting.png │ │ ├── livereload.png │ │ ├── mysql-workbench-connection.png │ │ ├── navicat-connection-config.png │ │ ├── navicat-ssh-tunnel-config.png │ │ ├── phpstorm-additional-xdebug-configs.png │ │ ├── remmina-ssh-tunnel.png │ │ ├── selenium-remote-desktop-viewer.png │ │ ├── sequel-pro-connection.png │ │ ├── tableplus-connection.png │ │ └── xdebug-phpstorm.png │ └── xdebug.md ├── environments.md ├── environments │ ├── customizing.md │ ├── magento2.md │ ├── shopware.md │ └── types.md ├── images.md ├── index.md ├── installing.md ├── requirements.txt ├── services.md └── usage.md ├── environments ├── drupal │ ├── db.base.yml │ ├── drupal.base.yml │ ├── drupal.darwin.yml │ ├── drupal.mutagen.yml │ ├── drupal.settings.base.yml │ ├── init.env │ └── init.env.cmd ├── includes │ ├── allure.base.yml │ ├── blackfire.base.yml │ ├── blackfire.darwin.yml │ ├── blackfire.linux.yml │ ├── db.base.yml │ ├── elastichq.base.yml │ ├── elasticsearch.base.yml │ ├── networks.base.yml │ ├── nginx.base.yml │ ├── nginx.darwin.yml │ ├── opensearch.base.yml │ ├── php-fpm.base.yml │ ├── php-fpm.darwin.yml │ ├── php-fpm.linux.yml │ ├── rabbitmq.base.yml │ ├── redis.base.yml │ ├── selenium.base.yml │ └── varnish.base.yml ├── laravel │ ├── db.base.yml │ ├── init.env │ └── laravel.base.yml ├── local │ └── local.base.yml ├── magento-cloud │ ├── init.env │ ├── init.env.cmd │ └── magento-cloud.base.yml ├── magento1 │ ├── db.base.yml │ ├── init.env │ ├── magento1.base.yml │ ├── magento1.blackfire.darwin.yml │ ├── magento1.darwin.yml │ └── magento1.mutagen.yml ├── magento2 │ ├── db.base.yml │ ├── init.env │ ├── magento2.base.yml │ ├── magento2.blackfire.darwin.yml │ ├── magento2.darwin.yml │ ├── magento2.magepack.base.yml │ ├── magento2.magepack.darwin.yml │ ├── magento2.magepack.linux.yml │ ├── magento2.mutagen.yml │ ├── magento2.splitdb.checkout.base.yml │ ├── magento2.splitdb.sales.base.yml │ └── magento2.tests.base.yml ├── shopware │ ├── db.base.yml │ ├── init.env │ ├── shopware.base.yml │ ├── shopware.darwin.yml │ └── shopware.mutagen.yml ├── symfony │ ├── db.base.yml │ ├── init.env │ └── symfony.base.yml └── wordpress │ ├── db.base.yml │ ├── init.env │ └── wordpress.base.yml ├── images ├── .trigger ├── dashboard │ ├── Dockerfile │ ├── den_entrypoint │ ├── img │ │ └── Dnsmasq_icon.svg │ └── index.html ├── dnsmasq │ ├── Dockerfile │ ├── LICENSE.md │ └── dnsmasq.conf ├── elasticsearch │ └── Dockerfile ├── magepack │ ├── Dockerfile │ └── bin │ │ ├── bundle.sh │ │ └── generate.sh ├── mailhog │ └── Dockerfile ├── mariadb │ └── Dockerfile ├── mysql │ ├── .trigger │ ├── Dockerfile │ └── etc │ │ └── mysql │ │ └── conf.d │ │ └── skip-bin-log.cnf ├── nginx │ ├── Dockerfile │ └── etc │ │ └── nginx │ │ ├── available.d │ │ ├── application.conf │ │ ├── drupal.conf │ │ ├── magento1.conf │ │ └── magento2.conf │ │ ├── conf.d │ │ └── default.conf │ │ └── fastcgi_params ├── opensearch │ └── Dockerfile ├── php-fpm │ ├── .trigger │ ├── Dockerfile │ ├── blackfire │ │ └── Dockerfile │ ├── context │ │ ├── blackfire │ │ │ └── etc │ │ │ │ └── php.d │ │ │ │ └── zz-blackfire.ini │ │ ├── docker-entrypoint │ │ ├── etc │ │ │ ├── php-cli.ini │ │ │ ├── php-fpm-fcgi.ini │ │ │ ├── php.d │ │ │ │ ├── 01-php.ini │ │ │ │ ├── 05-additions.ini.template │ │ │ │ ├── 10-opcache.ini │ │ │ │ └── 11-apc.ini │ │ │ └── profile.d │ │ │ │ ├── bind.sh │ │ │ │ ├── path.sh │ │ │ │ └── ps1.sh │ │ └── xdebug3 │ │ │ └── etc │ │ │ ├── php-cli.ini │ │ │ ├── php-fpm-fcgi.ini │ │ │ └── php.d │ │ │ ├── 15-xdebug3.2.ini.template │ │ │ └── 15-xdebug3.ini.template │ ├── magento1 │ │ ├── Dockerfile │ │ ├── blackfire │ │ │ └── Dockerfile │ │ └── xdebug3 │ │ │ └── Dockerfile │ ├── magento2 │ │ ├── Dockerfile │ │ ├── blackfire │ │ │ └── Dockerfile │ │ └── xdebug3 │ │ │ └── Dockerfile │ ├── node │ │ └── Dockerfile │ └── xdebug3 │ │ └── Dockerfile ├── rabbitmq │ └── Dockerfile ├── redis │ └── Dockerfile └── varnish │ ├── Dockerfile │ ├── Dockerfile.legacy │ ├── Dockerfile.lts │ └── default.vcl ├── utils ├── core.sh ├── env.sh └── install.sh └── version /.github/ISSUE_TEMPLATE/brew-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/.github/ISSUE_TEMPLATE/brew-issue.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/den-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/.github/ISSUE_TEMPLATE/den-issue.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/image-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/.github/ISSUE_TEMPLATE/image-issue.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build-documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/.github/workflows/build-documentation.yml -------------------------------------------------------------------------------- /.github/workflows/docker-image-dashboard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/.github/workflows/docker-image-dashboard.yml -------------------------------------------------------------------------------- /.github/workflows/docker-image-dnsmasq.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/.github/workflows/docker-image-dnsmasq.yml -------------------------------------------------------------------------------- /.github/workflows/docker-image-elasticsearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/.github/workflows/docker-image-elasticsearch.yml -------------------------------------------------------------------------------- /.github/workflows/docker-image-magepack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/.github/workflows/docker-image-magepack.yml -------------------------------------------------------------------------------- /.github/workflows/docker-image-mailhog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/.github/workflows/docker-image-mailhog.yml -------------------------------------------------------------------------------- /.github/workflows/docker-image-mariadb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/.github/workflows/docker-image-mariadb.yml -------------------------------------------------------------------------------- /.github/workflows/docker-image-mysql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/.github/workflows/docker-image-mysql.yml -------------------------------------------------------------------------------- /.github/workflows/docker-image-nginx.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/.github/workflows/docker-image-nginx.yml -------------------------------------------------------------------------------- /.github/workflows/docker-image-opensearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/.github/workflows/docker-image-opensearch.yml -------------------------------------------------------------------------------- /.github/workflows/docker-image-php-fpm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/.github/workflows/docker-image-php-fpm.yml -------------------------------------------------------------------------------- /.github/workflows/docker-image-rabbitmq.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/.github/workflows/docker-image-rabbitmq.yml -------------------------------------------------------------------------------- /.github/workflows/docker-image-redis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/.github/workflows/docker-image-redis.yml -------------------------------------------------------------------------------- /.github/workflows/docker-image-varnish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/.github/workflows/docker-image-varnish.yml -------------------------------------------------------------------------------- /.github/workflows/pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/.github/workflows/pages.yml -------------------------------------------------------------------------------- /.github/workflows/php-matrix/blackfire-generator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/.github/workflows/php-matrix/blackfire-generator.php -------------------------------------------------------------------------------- /.github/workflows/php-matrix/constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/.github/workflows/php-matrix/constants.php -------------------------------------------------------------------------------- /.github/workflows/php-matrix/full-generator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/.github/workflows/php-matrix/full-generator.php -------------------------------------------------------------------------------- /.github/workflows/php-matrix/node-generator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/.github/workflows/php-matrix/node-generator.php -------------------------------------------------------------------------------- /.github/workflows/php-matrix/php-generator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/.github/workflows/php-matrix/php-generator.php -------------------------------------------------------------------------------- /.github/workflows/push-release-to-brew.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/.github/workflows/push-release-to-brew.yml -------------------------------------------------------------------------------- /.github/workflows/tag-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/.github/workflows/tag-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.sync 2 | /Icon? 3 | /.idea 4 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/README.md -------------------------------------------------------------------------------- /bin/den: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/bin/den -------------------------------------------------------------------------------- /commands/blackfire.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/commands/blackfire.cmd -------------------------------------------------------------------------------- /commands/blackfire.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/commands/blackfire.help -------------------------------------------------------------------------------- /commands/db.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/commands/db.cmd -------------------------------------------------------------------------------- /commands/db.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/commands/db.help -------------------------------------------------------------------------------- /commands/debug.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/commands/debug.cmd -------------------------------------------------------------------------------- /commands/debug.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/commands/debug.help -------------------------------------------------------------------------------- /commands/env-init.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/commands/env-init.cmd -------------------------------------------------------------------------------- /commands/env-init.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/commands/env-init.help -------------------------------------------------------------------------------- /commands/env.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/commands/env.cmd -------------------------------------------------------------------------------- /commands/env.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/commands/env.help -------------------------------------------------------------------------------- /commands/install.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/commands/install.cmd -------------------------------------------------------------------------------- /commands/redis.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/commands/redis.cmd -------------------------------------------------------------------------------- /commands/redis.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/commands/redis.help -------------------------------------------------------------------------------- /commands/shell.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/commands/shell.cmd -------------------------------------------------------------------------------- /commands/shell.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/commands/shell.help -------------------------------------------------------------------------------- /commands/sign-certificate.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/commands/sign-certificate.cmd -------------------------------------------------------------------------------- /commands/sign-certificate.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/commands/sign-certificate.help -------------------------------------------------------------------------------- /commands/status.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/commands/status.cmd -------------------------------------------------------------------------------- /commands/status.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/commands/status.help -------------------------------------------------------------------------------- /commands/svc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/commands/svc.cmd -------------------------------------------------------------------------------- /commands/svc.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/commands/svc.help -------------------------------------------------------------------------------- /commands/sync.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/commands/sync.cmd -------------------------------------------------------------------------------- /commands/sync.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/commands/sync.help -------------------------------------------------------------------------------- /commands/usage.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/commands/usage.cmd -------------------------------------------------------------------------------- /commands/usage.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/commands/usage.help -------------------------------------------------------------------------------- /commands/version.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/commands/version.cmd -------------------------------------------------------------------------------- /commands/vnc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/commands/vnc.cmd -------------------------------------------------------------------------------- /commands/vnc.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/commands/vnc.help -------------------------------------------------------------------------------- /config/openssl/certificate.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/config/openssl/certificate.conf -------------------------------------------------------------------------------- /config/openssl/rootca.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/config/openssl/rootca.conf -------------------------------------------------------------------------------- /config/traefik/traefik.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/config/traefik/traefik.yml -------------------------------------------------------------------------------- /docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/docker/docker-compose.yml -------------------------------------------------------------------------------- /docker/portainer-service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/docker/portainer-service.yml -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | /_build 2 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/changelog.md: -------------------------------------------------------------------------------- 1 | ../CHANGELOG.md -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/docs/configuration.md -------------------------------------------------------------------------------- /docs/configuration/alternative-shells.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/docs/configuration/alternative-shells.md -------------------------------------------------------------------------------- /docs/configuration/blackfire.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/docs/configuration/blackfire.md -------------------------------------------------------------------------------- /docs/configuration/database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/docs/configuration/database.md -------------------------------------------------------------------------------- /docs/configuration/dns-resolver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/docs/configuration/dns-resolver.md -------------------------------------------------------------------------------- /docs/configuration/elasticsearch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/docs/configuration/elasticsearch.md -------------------------------------------------------------------------------- /docs/configuration/livereload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/docs/configuration/livereload.md -------------------------------------------------------------------------------- /docs/configuration/magento2-testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/docs/configuration/magento2-testing.md -------------------------------------------------------------------------------- /docs/configuration/mftf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/docs/configuration/mftf.md -------------------------------------------------------------------------------- /docs/configuration/multipledomains.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/docs/configuration/multipledomains.md -------------------------------------------------------------------------------- /docs/configuration/reporting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/docs/configuration/reporting.md -------------------------------------------------------------------------------- /docs/configuration/screenshots/123906068-2ed7d180-d97c-11eb-9e52-ec48f6753ee7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/docs/configuration/screenshots/123906068-2ed7d180-d97c-11eb-9e52-ec48f6753ee7.png -------------------------------------------------------------------------------- /docs/configuration/screenshots/123906280-8a09c400-d97c-11eb-9558-cb513f89e4c3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/docs/configuration/screenshots/123906280-8a09c400-d97c-11eb-9558-cb513f89e4c3.png -------------------------------------------------------------------------------- /docs/configuration/screenshots/66998481-a0062100-f0d4-11e9-8cc0-a5691fee59c5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/docs/configuration/screenshots/66998481-a0062100-f0d4-11e9-8cc0-a5691fee59c5.png -------------------------------------------------------------------------------- /docs/configuration/screenshots/66998483-a09eb780-f0d4-11e9-9643-8fe63dd62aad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/docs/configuration/screenshots/66998483-a09eb780-f0d4-11e9-9643-8fe63dd62aad.png -------------------------------------------------------------------------------- /docs/configuration/screenshots/allure-reporting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/docs/configuration/screenshots/allure-reporting.png -------------------------------------------------------------------------------- /docs/configuration/screenshots/livereload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/docs/configuration/screenshots/livereload.png -------------------------------------------------------------------------------- /docs/configuration/screenshots/mysql-workbench-connection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/docs/configuration/screenshots/mysql-workbench-connection.png -------------------------------------------------------------------------------- /docs/configuration/screenshots/navicat-connection-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/docs/configuration/screenshots/navicat-connection-config.png -------------------------------------------------------------------------------- /docs/configuration/screenshots/navicat-ssh-tunnel-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/docs/configuration/screenshots/navicat-ssh-tunnel-config.png -------------------------------------------------------------------------------- /docs/configuration/screenshots/phpstorm-additional-xdebug-configs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/docs/configuration/screenshots/phpstorm-additional-xdebug-configs.png -------------------------------------------------------------------------------- /docs/configuration/screenshots/remmina-ssh-tunnel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/docs/configuration/screenshots/remmina-ssh-tunnel.png -------------------------------------------------------------------------------- /docs/configuration/screenshots/selenium-remote-desktop-viewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/docs/configuration/screenshots/selenium-remote-desktop-viewer.png -------------------------------------------------------------------------------- /docs/configuration/screenshots/sequel-pro-connection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/docs/configuration/screenshots/sequel-pro-connection.png -------------------------------------------------------------------------------- /docs/configuration/screenshots/tableplus-connection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/docs/configuration/screenshots/tableplus-connection.png -------------------------------------------------------------------------------- /docs/configuration/screenshots/xdebug-phpstorm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/docs/configuration/screenshots/xdebug-phpstorm.png -------------------------------------------------------------------------------- /docs/configuration/xdebug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/docs/configuration/xdebug.md -------------------------------------------------------------------------------- /docs/environments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/docs/environments.md -------------------------------------------------------------------------------- /docs/environments/customizing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/docs/environments/customizing.md -------------------------------------------------------------------------------- /docs/environments/magento2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/docs/environments/magento2.md -------------------------------------------------------------------------------- /docs/environments/shopware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/docs/environments/shopware.md -------------------------------------------------------------------------------- /docs/environments/types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/docs/environments/types.md -------------------------------------------------------------------------------- /docs/images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/docs/images.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/installing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/docs/installing.md -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/services.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/docs/services.md -------------------------------------------------------------------------------- /docs/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/docs/usage.md -------------------------------------------------------------------------------- /environments/drupal/db.base.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/environments/drupal/db.base.yml -------------------------------------------------------------------------------- /environments/drupal/drupal.base.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/environments/drupal/drupal.base.yml -------------------------------------------------------------------------------- /environments/drupal/drupal.darwin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/environments/drupal/drupal.darwin.yml -------------------------------------------------------------------------------- /environments/drupal/drupal.mutagen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/environments/drupal/drupal.mutagen.yml -------------------------------------------------------------------------------- /environments/drupal/drupal.settings.base.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/environments/drupal/drupal.settings.base.yml -------------------------------------------------------------------------------- /environments/drupal/init.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/environments/drupal/init.env -------------------------------------------------------------------------------- /environments/drupal/init.env.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/environments/drupal/init.env.cmd -------------------------------------------------------------------------------- /environments/includes/allure.base.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/environments/includes/allure.base.yml -------------------------------------------------------------------------------- /environments/includes/blackfire.base.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/environments/includes/blackfire.base.yml -------------------------------------------------------------------------------- /environments/includes/blackfire.darwin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/environments/includes/blackfire.darwin.yml -------------------------------------------------------------------------------- /environments/includes/blackfire.linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/environments/includes/blackfire.linux.yml -------------------------------------------------------------------------------- /environments/includes/db.base.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/environments/includes/db.base.yml -------------------------------------------------------------------------------- /environments/includes/elastichq.base.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/environments/includes/elastichq.base.yml -------------------------------------------------------------------------------- /environments/includes/elasticsearch.base.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/environments/includes/elasticsearch.base.yml -------------------------------------------------------------------------------- /environments/includes/networks.base.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/environments/includes/networks.base.yml -------------------------------------------------------------------------------- /environments/includes/nginx.base.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/environments/includes/nginx.base.yml -------------------------------------------------------------------------------- /environments/includes/nginx.darwin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/environments/includes/nginx.darwin.yml -------------------------------------------------------------------------------- /environments/includes/opensearch.base.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/environments/includes/opensearch.base.yml -------------------------------------------------------------------------------- /environments/includes/php-fpm.base.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/environments/includes/php-fpm.base.yml -------------------------------------------------------------------------------- /environments/includes/php-fpm.darwin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/environments/includes/php-fpm.darwin.yml -------------------------------------------------------------------------------- /environments/includes/php-fpm.linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/environments/includes/php-fpm.linux.yml -------------------------------------------------------------------------------- /environments/includes/rabbitmq.base.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/environments/includes/rabbitmq.base.yml -------------------------------------------------------------------------------- /environments/includes/redis.base.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/environments/includes/redis.base.yml -------------------------------------------------------------------------------- /environments/includes/selenium.base.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/environments/includes/selenium.base.yml -------------------------------------------------------------------------------- /environments/includes/varnish.base.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/environments/includes/varnish.base.yml -------------------------------------------------------------------------------- /environments/laravel/db.base.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/environments/laravel/db.base.yml -------------------------------------------------------------------------------- /environments/laravel/init.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/environments/laravel/init.env -------------------------------------------------------------------------------- /environments/laravel/laravel.base.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/environments/laravel/laravel.base.yml -------------------------------------------------------------------------------- /environments/local/local.base.yml: -------------------------------------------------------------------------------- 1 | version: "3.5" 2 | -------------------------------------------------------------------------------- /environments/magento-cloud/init.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/environments/magento-cloud/init.env -------------------------------------------------------------------------------- /environments/magento-cloud/init.env.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/environments/magento-cloud/init.env.cmd -------------------------------------------------------------------------------- /environments/magento-cloud/magento-cloud.base.yml: -------------------------------------------------------------------------------- 1 | version: "3.5" 2 | -------------------------------------------------------------------------------- /environments/magento1/db.base.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/environments/magento1/db.base.yml -------------------------------------------------------------------------------- /environments/magento1/init.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/environments/magento1/init.env -------------------------------------------------------------------------------- /environments/magento1/magento1.base.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/environments/magento1/magento1.base.yml -------------------------------------------------------------------------------- /environments/magento1/magento1.blackfire.darwin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/environments/magento1/magento1.blackfire.darwin.yml -------------------------------------------------------------------------------- /environments/magento1/magento1.darwin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/environments/magento1/magento1.darwin.yml -------------------------------------------------------------------------------- /environments/magento1/magento1.mutagen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/environments/magento1/magento1.mutagen.yml -------------------------------------------------------------------------------- /environments/magento2/db.base.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/environments/magento2/db.base.yml -------------------------------------------------------------------------------- /environments/magento2/init.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/environments/magento2/init.env -------------------------------------------------------------------------------- /environments/magento2/magento2.base.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/environments/magento2/magento2.base.yml -------------------------------------------------------------------------------- /environments/magento2/magento2.blackfire.darwin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/environments/magento2/magento2.blackfire.darwin.yml -------------------------------------------------------------------------------- /environments/magento2/magento2.darwin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/environments/magento2/magento2.darwin.yml -------------------------------------------------------------------------------- /environments/magento2/magento2.magepack.base.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/environments/magento2/magento2.magepack.base.yml -------------------------------------------------------------------------------- /environments/magento2/magento2.magepack.darwin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/environments/magento2/magento2.magepack.darwin.yml -------------------------------------------------------------------------------- /environments/magento2/magento2.magepack.linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/environments/magento2/magento2.magepack.linux.yml -------------------------------------------------------------------------------- /environments/magento2/magento2.mutagen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/environments/magento2/magento2.mutagen.yml -------------------------------------------------------------------------------- /environments/magento2/magento2.splitdb.checkout.base.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/environments/magento2/magento2.splitdb.checkout.base.yml -------------------------------------------------------------------------------- /environments/magento2/magento2.splitdb.sales.base.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/environments/magento2/magento2.splitdb.sales.base.yml -------------------------------------------------------------------------------- /environments/magento2/magento2.tests.base.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/environments/magento2/magento2.tests.base.yml -------------------------------------------------------------------------------- /environments/shopware/db.base.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/environments/shopware/db.base.yml -------------------------------------------------------------------------------- /environments/shopware/init.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/environments/shopware/init.env -------------------------------------------------------------------------------- /environments/shopware/shopware.base.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/environments/shopware/shopware.base.yml -------------------------------------------------------------------------------- /environments/shopware/shopware.darwin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/environments/shopware/shopware.darwin.yml -------------------------------------------------------------------------------- /environments/shopware/shopware.mutagen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/environments/shopware/shopware.mutagen.yml -------------------------------------------------------------------------------- /environments/symfony/db.base.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/environments/symfony/db.base.yml -------------------------------------------------------------------------------- /environments/symfony/init.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/environments/symfony/init.env -------------------------------------------------------------------------------- /environments/symfony/symfony.base.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/environments/symfony/symfony.base.yml -------------------------------------------------------------------------------- /environments/wordpress/db.base.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/environments/wordpress/db.base.yml -------------------------------------------------------------------------------- /environments/wordpress/init.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/environments/wordpress/init.env -------------------------------------------------------------------------------- /environments/wordpress/wordpress.base.yml: -------------------------------------------------------------------------------- 1 | version: "3.5" 2 | -------------------------------------------------------------------------------- /images/.trigger: -------------------------------------------------------------------------------- 1 | 0b32907e-d50d-45d6-ad25-badeb69517f8 2 | -------------------------------------------------------------------------------- /images/dashboard/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/images/dashboard/Dockerfile -------------------------------------------------------------------------------- /images/dashboard/den_entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/images/dashboard/den_entrypoint -------------------------------------------------------------------------------- /images/dashboard/img/Dnsmasq_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/images/dashboard/img/Dnsmasq_icon.svg -------------------------------------------------------------------------------- /images/dashboard/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/images/dashboard/index.html -------------------------------------------------------------------------------- /images/dnsmasq/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/images/dnsmasq/Dockerfile -------------------------------------------------------------------------------- /images/dnsmasq/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/images/dnsmasq/LICENSE.md -------------------------------------------------------------------------------- /images/dnsmasq/dnsmasq.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/images/dnsmasq/dnsmasq.conf -------------------------------------------------------------------------------- /images/elasticsearch/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/images/elasticsearch/Dockerfile -------------------------------------------------------------------------------- /images/magepack/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/images/magepack/Dockerfile -------------------------------------------------------------------------------- /images/magepack/bin/bundle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/images/magepack/bin/bundle.sh -------------------------------------------------------------------------------- /images/magepack/bin/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/images/magepack/bin/generate.sh -------------------------------------------------------------------------------- /images/mailhog/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/images/mailhog/Dockerfile -------------------------------------------------------------------------------- /images/mariadb/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/images/mariadb/Dockerfile -------------------------------------------------------------------------------- /images/mysql/.trigger: -------------------------------------------------------------------------------- 1 | 36cf4c4c-03f1-4680-8cc0-9b90cfbd766b 2 | -------------------------------------------------------------------------------- /images/mysql/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/images/mysql/Dockerfile -------------------------------------------------------------------------------- /images/mysql/etc/mysql/conf.d/skip-bin-log.cnf: -------------------------------------------------------------------------------- 1 | [mysqld] 2 | skip-log-bin 3 | -------------------------------------------------------------------------------- /images/nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/images/nginx/Dockerfile -------------------------------------------------------------------------------- /images/nginx/etc/nginx/available.d/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/images/nginx/etc/nginx/available.d/application.conf -------------------------------------------------------------------------------- /images/nginx/etc/nginx/available.d/drupal.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/images/nginx/etc/nginx/available.d/drupal.conf -------------------------------------------------------------------------------- /images/nginx/etc/nginx/available.d/magento1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/images/nginx/etc/nginx/available.d/magento1.conf -------------------------------------------------------------------------------- /images/nginx/etc/nginx/available.d/magento2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/images/nginx/etc/nginx/available.d/magento2.conf -------------------------------------------------------------------------------- /images/nginx/etc/nginx/conf.d/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/images/nginx/etc/nginx/conf.d/default.conf -------------------------------------------------------------------------------- /images/nginx/etc/nginx/fastcgi_params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/images/nginx/etc/nginx/fastcgi_params -------------------------------------------------------------------------------- /images/opensearch/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/images/opensearch/Dockerfile -------------------------------------------------------------------------------- /images/php-fpm/.trigger: -------------------------------------------------------------------------------- 1 | bfad0104-b9ae-44ad-bdde-0a0630dad75b 2 | -------------------------------------------------------------------------------- /images/php-fpm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/images/php-fpm/Dockerfile -------------------------------------------------------------------------------- /images/php-fpm/blackfire/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/images/php-fpm/blackfire/Dockerfile -------------------------------------------------------------------------------- /images/php-fpm/context/blackfire/etc/php.d/zz-blackfire.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/images/php-fpm/context/blackfire/etc/php.d/zz-blackfire.ini -------------------------------------------------------------------------------- /images/php-fpm/context/docker-entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/images/php-fpm/context/docker-entrypoint -------------------------------------------------------------------------------- /images/php-fpm/context/etc/php-cli.ini: -------------------------------------------------------------------------------- 1 | [php] 2 | memory_limit=-1 3 | -------------------------------------------------------------------------------- /images/php-fpm/context/etc/php-fpm-fcgi.ini: -------------------------------------------------------------------------------- 1 | [php] 2 | memory_limit=756M 3 | -------------------------------------------------------------------------------- /images/php-fpm/context/etc/php.d/01-php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/images/php-fpm/context/etc/php.d/01-php.ini -------------------------------------------------------------------------------- /images/php-fpm/context/etc/php.d/05-additions.ini.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/images/php-fpm/context/etc/php.d/05-additions.ini.template -------------------------------------------------------------------------------- /images/php-fpm/context/etc/php.d/10-opcache.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/images/php-fpm/context/etc/php.d/10-opcache.ini -------------------------------------------------------------------------------- /images/php-fpm/context/etc/php.d/11-apc.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/images/php-fpm/context/etc/php.d/11-apc.ini -------------------------------------------------------------------------------- /images/php-fpm/context/etc/profile.d/bind.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/images/php-fpm/context/etc/profile.d/bind.sh -------------------------------------------------------------------------------- /images/php-fpm/context/etc/profile.d/path.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/images/php-fpm/context/etc/profile.d/path.sh -------------------------------------------------------------------------------- /images/php-fpm/context/etc/profile.d/ps1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/images/php-fpm/context/etc/profile.d/ps1.sh -------------------------------------------------------------------------------- /images/php-fpm/context/xdebug3/etc/php-cli.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/images/php-fpm/context/xdebug3/etc/php-cli.ini -------------------------------------------------------------------------------- /images/php-fpm/context/xdebug3/etc/php-fpm-fcgi.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/images/php-fpm/context/xdebug3/etc/php-fpm-fcgi.ini -------------------------------------------------------------------------------- /images/php-fpm/context/xdebug3/etc/php.d/15-xdebug3.2.ini.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/images/php-fpm/context/xdebug3/etc/php.d/15-xdebug3.2.ini.template -------------------------------------------------------------------------------- /images/php-fpm/context/xdebug3/etc/php.d/15-xdebug3.ini.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/images/php-fpm/context/xdebug3/etc/php.d/15-xdebug3.ini.template -------------------------------------------------------------------------------- /images/php-fpm/magento1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/images/php-fpm/magento1/Dockerfile -------------------------------------------------------------------------------- /images/php-fpm/magento1/blackfire/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/images/php-fpm/magento1/blackfire/Dockerfile -------------------------------------------------------------------------------- /images/php-fpm/magento1/xdebug3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/images/php-fpm/magento1/xdebug3/Dockerfile -------------------------------------------------------------------------------- /images/php-fpm/magento2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/images/php-fpm/magento2/Dockerfile -------------------------------------------------------------------------------- /images/php-fpm/magento2/blackfire/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/images/php-fpm/magento2/blackfire/Dockerfile -------------------------------------------------------------------------------- /images/php-fpm/magento2/xdebug3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/images/php-fpm/magento2/xdebug3/Dockerfile -------------------------------------------------------------------------------- /images/php-fpm/node/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/images/php-fpm/node/Dockerfile -------------------------------------------------------------------------------- /images/php-fpm/xdebug3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/images/php-fpm/xdebug3/Dockerfile -------------------------------------------------------------------------------- /images/rabbitmq/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/images/rabbitmq/Dockerfile -------------------------------------------------------------------------------- /images/redis/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/images/redis/Dockerfile -------------------------------------------------------------------------------- /images/varnish/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/images/varnish/Dockerfile -------------------------------------------------------------------------------- /images/varnish/Dockerfile.legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/images/varnish/Dockerfile.legacy -------------------------------------------------------------------------------- /images/varnish/Dockerfile.lts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/images/varnish/Dockerfile.lts -------------------------------------------------------------------------------- /images/varnish/default.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/images/varnish/default.vcl -------------------------------------------------------------------------------- /utils/core.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/utils/core.sh -------------------------------------------------------------------------------- /utils/env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/utils/env.sh -------------------------------------------------------------------------------- /utils/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftotter/den/HEAD/utils/install.sh -------------------------------------------------------------------------------- /version: -------------------------------------------------------------------------------- 1 | in-dev 2 | --------------------------------------------------------------------------------