├── 6 ├── drupal │ ├── php8.1 │ │ ├── .my.cnf │ │ ├── Dockerfile │ │ ├── apache-sites-available-default.conf │ │ ├── apache.conf │ │ ├── civicrm-docker-dump │ │ ├── civicrm-docker-entrypoint │ │ ├── civicrm-docker-init │ │ ├── civicrm-docker-install │ │ ├── civicrm-docker-load │ │ ├── civicrm.settings.php │ │ ├── civicrm_dump.php │ │ ├── msmtp-wrapper │ │ └── settings.php │ ├── php8.2 │ │ ├── .my.cnf │ │ ├── Dockerfile │ │ ├── apache-sites-available-default.conf │ │ ├── apache.conf │ │ ├── civicrm-docker-dump │ │ ├── civicrm-docker-entrypoint │ │ ├── civicrm-docker-init │ │ ├── civicrm-docker-install │ │ ├── civicrm-docker-load │ │ ├── civicrm.settings.php │ │ ├── civicrm_dump.php │ │ ├── msmtp-wrapper │ │ └── settings.php │ └── php8.3 │ │ ├── .my.cnf │ │ ├── Dockerfile │ │ ├── apache-sites-available-default.conf │ │ ├── apache.conf │ │ ├── civicrm-docker-dump │ │ ├── civicrm-docker-entrypoint │ │ ├── civicrm-docker-init │ │ ├── civicrm-docker-install │ │ ├── civicrm-docker-load │ │ ├── civicrm.settings.php │ │ ├── civicrm_dump.php │ │ ├── msmtp-wrapper │ │ └── settings.php └── wordpress │ ├── php8.1 │ ├── .my.cnf │ ├── Dockerfile │ ├── apache-sites-available-default.conf │ ├── apache.conf │ ├── civicrm-docker-dump │ ├── civicrm-docker-entrypoint │ ├── civicrm-docker-init │ ├── civicrm-docker-install │ ├── civicrm-docker-load │ ├── civicrm.settings.php │ ├── civicrm_dump.php │ ├── msmtp-wrapper │ └── wp-config.php │ ├── php8.2 │ ├── .my.cnf │ ├── Dockerfile │ ├── apache-sites-available-default.conf │ ├── apache.conf │ ├── civicrm-docker-dump │ ├── civicrm-docker-entrypoint │ ├── civicrm-docker-init │ ├── civicrm-docker-install │ ├── civicrm-docker-load │ ├── civicrm.settings.php │ ├── civicrm_dump.php │ ├── msmtp-wrapper │ └── wp-config.php │ └── php8.3 │ ├── .my.cnf │ ├── Dockerfile │ ├── apache-sites-available-default.conf │ ├── apache.conf │ ├── civicrm-docker-dump │ ├── civicrm-docker-entrypoint │ ├── civicrm-docker-init │ ├── civicrm-docker-install │ ├── civicrm-docker-load │ ├── civicrm.settings.php │ ├── civicrm_dump.php │ ├── msmtp-wrapper │ └── wp-config.php ├── .gitignore ├── README.md ├── TODO.md ├── bin ├── civicrm-docker-dump-manual ├── civicrm-docker-lint ├── gen-secret-keys └── gen-wordpress-keys ├── combos.json ├── docker-compose ├── README.md ├── backdrop │ ├── .gitignore │ ├── dev.dist.env │ ├── docker-compose.dev.dist.yml │ └── docker-compose.prod.dist.yml ├── drupal │ ├── .gitignore │ ├── dev.dist.env │ ├── docker-compose.dev.dist.yml │ └── docker-compose.prod.dist.yml └── wordpress │ ├── .gitignore │ ├── dev.dist.env │ ├── docker-compose.dev.dist.yml │ └── docker-compose.prod.dist.yml ├── docs └── getting-started.md ├── generate.php ├── mysql ├── Dockerfile └── my.cnf ├── templates ├── .my.cnf ├── Dockerfile ├── apache-sites-available-default.conf ├── apache.conf ├── civicrm-docker-entrypoint ├── civicrm-docker-load ├── civicrm_dump.php ├── drupal.Dockerfile ├── drupal.civicrm-docker-dump ├── drupal.civicrm-docker-init ├── drupal.civicrm-docker-install ├── drupal.civicrm.settings.php ├── drupal.settings.php ├── msmtp-wrapper ├── wordpress.Dockerfile ├── wordpress.civicrm-docker-dump ├── wordpress.civicrm-docker-init ├── wordpress.civicrm-docker-install ├── wordpress.civicrm.settings.php └── wordpress.wp-config.php ├── update.php └── variables.php /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6/drupal/php8.1/.my.cnf: -------------------------------------------------------------------------------- 1 | [mysqldump] 2 | max_allowed_packet=1024M 3 | -------------------------------------------------------------------------------- /6/drupal/php8.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/drupal/php8.1/Dockerfile -------------------------------------------------------------------------------- /6/drupal/php8.1/apache-sites-available-default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/drupal/php8.1/apache-sites-available-default.conf -------------------------------------------------------------------------------- /6/drupal/php8.1/apache.conf: -------------------------------------------------------------------------------- 1 | ServerName ${BASE_URL} 2 | -------------------------------------------------------------------------------- /6/drupal/php8.1/civicrm-docker-dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/drupal/php8.1/civicrm-docker-dump -------------------------------------------------------------------------------- /6/drupal/php8.1/civicrm-docker-entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/drupal/php8.1/civicrm-docker-entrypoint -------------------------------------------------------------------------------- /6/drupal/php8.1/civicrm-docker-init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/drupal/php8.1/civicrm-docker-init -------------------------------------------------------------------------------- /6/drupal/php8.1/civicrm-docker-install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/drupal/php8.1/civicrm-docker-install -------------------------------------------------------------------------------- /6/drupal/php8.1/civicrm-docker-load: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/drupal/php8.1/civicrm-docker-load -------------------------------------------------------------------------------- /6/drupal/php8.1/civicrm.settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/drupal/php8.1/civicrm.settings.php -------------------------------------------------------------------------------- /6/drupal/php8.1/civicrm_dump.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/drupal/php8.1/civicrm_dump.php -------------------------------------------------------------------------------- /6/drupal/php8.1/msmtp-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/drupal/php8.1/msmtp-wrapper -------------------------------------------------------------------------------- /6/drupal/php8.1/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/drupal/php8.1/settings.php -------------------------------------------------------------------------------- /6/drupal/php8.2/.my.cnf: -------------------------------------------------------------------------------- 1 | [mysqldump] 2 | max_allowed_packet=1024M 3 | -------------------------------------------------------------------------------- /6/drupal/php8.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/drupal/php8.2/Dockerfile -------------------------------------------------------------------------------- /6/drupal/php8.2/apache-sites-available-default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/drupal/php8.2/apache-sites-available-default.conf -------------------------------------------------------------------------------- /6/drupal/php8.2/apache.conf: -------------------------------------------------------------------------------- 1 | ServerName ${BASE_URL} 2 | -------------------------------------------------------------------------------- /6/drupal/php8.2/civicrm-docker-dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/drupal/php8.2/civicrm-docker-dump -------------------------------------------------------------------------------- /6/drupal/php8.2/civicrm-docker-entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/drupal/php8.2/civicrm-docker-entrypoint -------------------------------------------------------------------------------- /6/drupal/php8.2/civicrm-docker-init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/drupal/php8.2/civicrm-docker-init -------------------------------------------------------------------------------- /6/drupal/php8.2/civicrm-docker-install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/drupal/php8.2/civicrm-docker-install -------------------------------------------------------------------------------- /6/drupal/php8.2/civicrm-docker-load: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/drupal/php8.2/civicrm-docker-load -------------------------------------------------------------------------------- /6/drupal/php8.2/civicrm.settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/drupal/php8.2/civicrm.settings.php -------------------------------------------------------------------------------- /6/drupal/php8.2/civicrm_dump.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/drupal/php8.2/civicrm_dump.php -------------------------------------------------------------------------------- /6/drupal/php8.2/msmtp-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/drupal/php8.2/msmtp-wrapper -------------------------------------------------------------------------------- /6/drupal/php8.2/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/drupal/php8.2/settings.php -------------------------------------------------------------------------------- /6/drupal/php8.3/.my.cnf: -------------------------------------------------------------------------------- 1 | [mysqldump] 2 | max_allowed_packet=1024M 3 | -------------------------------------------------------------------------------- /6/drupal/php8.3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/drupal/php8.3/Dockerfile -------------------------------------------------------------------------------- /6/drupal/php8.3/apache-sites-available-default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/drupal/php8.3/apache-sites-available-default.conf -------------------------------------------------------------------------------- /6/drupal/php8.3/apache.conf: -------------------------------------------------------------------------------- 1 | ServerName ${BASE_URL} 2 | -------------------------------------------------------------------------------- /6/drupal/php8.3/civicrm-docker-dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/drupal/php8.3/civicrm-docker-dump -------------------------------------------------------------------------------- /6/drupal/php8.3/civicrm-docker-entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/drupal/php8.3/civicrm-docker-entrypoint -------------------------------------------------------------------------------- /6/drupal/php8.3/civicrm-docker-init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/drupal/php8.3/civicrm-docker-init -------------------------------------------------------------------------------- /6/drupal/php8.3/civicrm-docker-install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/drupal/php8.3/civicrm-docker-install -------------------------------------------------------------------------------- /6/drupal/php8.3/civicrm-docker-load: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/drupal/php8.3/civicrm-docker-load -------------------------------------------------------------------------------- /6/drupal/php8.3/civicrm.settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/drupal/php8.3/civicrm.settings.php -------------------------------------------------------------------------------- /6/drupal/php8.3/civicrm_dump.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/drupal/php8.3/civicrm_dump.php -------------------------------------------------------------------------------- /6/drupal/php8.3/msmtp-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/drupal/php8.3/msmtp-wrapper -------------------------------------------------------------------------------- /6/drupal/php8.3/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/drupal/php8.3/settings.php -------------------------------------------------------------------------------- /6/wordpress/php8.1/.my.cnf: -------------------------------------------------------------------------------- 1 | [mysqldump] 2 | max_allowed_packet=1024M 3 | -------------------------------------------------------------------------------- /6/wordpress/php8.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/wordpress/php8.1/Dockerfile -------------------------------------------------------------------------------- /6/wordpress/php8.1/apache-sites-available-default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/wordpress/php8.1/apache-sites-available-default.conf -------------------------------------------------------------------------------- /6/wordpress/php8.1/apache.conf: -------------------------------------------------------------------------------- 1 | ServerName ${BASE_URL} 2 | -------------------------------------------------------------------------------- /6/wordpress/php8.1/civicrm-docker-dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/wordpress/php8.1/civicrm-docker-dump -------------------------------------------------------------------------------- /6/wordpress/php8.1/civicrm-docker-entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/wordpress/php8.1/civicrm-docker-entrypoint -------------------------------------------------------------------------------- /6/wordpress/php8.1/civicrm-docker-init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/wordpress/php8.1/civicrm-docker-init -------------------------------------------------------------------------------- /6/wordpress/php8.1/civicrm-docker-install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/wordpress/php8.1/civicrm-docker-install -------------------------------------------------------------------------------- /6/wordpress/php8.1/civicrm-docker-load: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/wordpress/php8.1/civicrm-docker-load -------------------------------------------------------------------------------- /6/wordpress/php8.1/civicrm.settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/wordpress/php8.1/civicrm.settings.php -------------------------------------------------------------------------------- /6/wordpress/php8.1/civicrm_dump.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/wordpress/php8.1/civicrm_dump.php -------------------------------------------------------------------------------- /6/wordpress/php8.1/msmtp-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/wordpress/php8.1/msmtp-wrapper -------------------------------------------------------------------------------- /6/wordpress/php8.1/wp-config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/wordpress/php8.1/wp-config.php -------------------------------------------------------------------------------- /6/wordpress/php8.2/.my.cnf: -------------------------------------------------------------------------------- 1 | [mysqldump] 2 | max_allowed_packet=1024M 3 | -------------------------------------------------------------------------------- /6/wordpress/php8.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/wordpress/php8.2/Dockerfile -------------------------------------------------------------------------------- /6/wordpress/php8.2/apache-sites-available-default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/wordpress/php8.2/apache-sites-available-default.conf -------------------------------------------------------------------------------- /6/wordpress/php8.2/apache.conf: -------------------------------------------------------------------------------- 1 | ServerName ${BASE_URL} 2 | -------------------------------------------------------------------------------- /6/wordpress/php8.2/civicrm-docker-dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/wordpress/php8.2/civicrm-docker-dump -------------------------------------------------------------------------------- /6/wordpress/php8.2/civicrm-docker-entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/wordpress/php8.2/civicrm-docker-entrypoint -------------------------------------------------------------------------------- /6/wordpress/php8.2/civicrm-docker-init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/wordpress/php8.2/civicrm-docker-init -------------------------------------------------------------------------------- /6/wordpress/php8.2/civicrm-docker-install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/wordpress/php8.2/civicrm-docker-install -------------------------------------------------------------------------------- /6/wordpress/php8.2/civicrm-docker-load: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/wordpress/php8.2/civicrm-docker-load -------------------------------------------------------------------------------- /6/wordpress/php8.2/civicrm.settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/wordpress/php8.2/civicrm.settings.php -------------------------------------------------------------------------------- /6/wordpress/php8.2/civicrm_dump.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/wordpress/php8.2/civicrm_dump.php -------------------------------------------------------------------------------- /6/wordpress/php8.2/msmtp-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/wordpress/php8.2/msmtp-wrapper -------------------------------------------------------------------------------- /6/wordpress/php8.2/wp-config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/wordpress/php8.2/wp-config.php -------------------------------------------------------------------------------- /6/wordpress/php8.3/.my.cnf: -------------------------------------------------------------------------------- 1 | [mysqldump] 2 | max_allowed_packet=1024M 3 | -------------------------------------------------------------------------------- /6/wordpress/php8.3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/wordpress/php8.3/Dockerfile -------------------------------------------------------------------------------- /6/wordpress/php8.3/apache-sites-available-default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/wordpress/php8.3/apache-sites-available-default.conf -------------------------------------------------------------------------------- /6/wordpress/php8.3/apache.conf: -------------------------------------------------------------------------------- 1 | ServerName ${BASE_URL} 2 | -------------------------------------------------------------------------------- /6/wordpress/php8.3/civicrm-docker-dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/wordpress/php8.3/civicrm-docker-dump -------------------------------------------------------------------------------- /6/wordpress/php8.3/civicrm-docker-entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/wordpress/php8.3/civicrm-docker-entrypoint -------------------------------------------------------------------------------- /6/wordpress/php8.3/civicrm-docker-init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/wordpress/php8.3/civicrm-docker-init -------------------------------------------------------------------------------- /6/wordpress/php8.3/civicrm-docker-install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/wordpress/php8.3/civicrm-docker-install -------------------------------------------------------------------------------- /6/wordpress/php8.3/civicrm-docker-load: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/wordpress/php8.3/civicrm-docker-load -------------------------------------------------------------------------------- /6/wordpress/php8.3/civicrm.settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/wordpress/php8.3/civicrm.settings.php -------------------------------------------------------------------------------- /6/wordpress/php8.3/civicrm_dump.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/wordpress/php8.3/civicrm_dump.php -------------------------------------------------------------------------------- /6/wordpress/php8.3/msmtp-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/wordpress/php8.3/msmtp-wrapper -------------------------------------------------------------------------------- /6/wordpress/php8.3/wp-config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/6/wordpress/php8.3/wp-config.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/TODO.md -------------------------------------------------------------------------------- /bin/civicrm-docker-dump-manual: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/bin/civicrm-docker-dump-manual -------------------------------------------------------------------------------- /bin/civicrm-docker-lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/bin/civicrm-docker-lint -------------------------------------------------------------------------------- /bin/gen-secret-keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/bin/gen-secret-keys -------------------------------------------------------------------------------- /bin/gen-wordpress-keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/bin/gen-wordpress-keys -------------------------------------------------------------------------------- /combos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/combos.json -------------------------------------------------------------------------------- /docker-compose/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/docker-compose/README.md -------------------------------------------------------------------------------- /docker-compose/backdrop/.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | state 3 | .bash_history 4 | docker-compose.yml 5 | -------------------------------------------------------------------------------- /docker-compose/backdrop/dev.dist.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/docker-compose/backdrop/dev.dist.env -------------------------------------------------------------------------------- /docker-compose/backdrop/docker-compose.dev.dist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/docker-compose/backdrop/docker-compose.dev.dist.yml -------------------------------------------------------------------------------- /docker-compose/backdrop/docker-compose.prod.dist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/docker-compose/backdrop/docker-compose.prod.dist.yml -------------------------------------------------------------------------------- /docker-compose/drupal/.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | state 3 | .bash_history 4 | docker-compose.yml 5 | -------------------------------------------------------------------------------- /docker-compose/drupal/dev.dist.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/docker-compose/drupal/dev.dist.env -------------------------------------------------------------------------------- /docker-compose/drupal/docker-compose.dev.dist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/docker-compose/drupal/docker-compose.dev.dist.yml -------------------------------------------------------------------------------- /docker-compose/drupal/docker-compose.prod.dist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/docker-compose/drupal/docker-compose.prod.dist.yml -------------------------------------------------------------------------------- /docker-compose/wordpress/.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | state 3 | .bash_history 4 | docker-compose.yml 5 | -------------------------------------------------------------------------------- /docker-compose/wordpress/dev.dist.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/docker-compose/wordpress/dev.dist.env -------------------------------------------------------------------------------- /docker-compose/wordpress/docker-compose.dev.dist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/docker-compose/wordpress/docker-compose.dev.dist.yml -------------------------------------------------------------------------------- /docker-compose/wordpress/docker-compose.prod.dist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/docker-compose/wordpress/docker-compose.prod.dist.yml -------------------------------------------------------------------------------- /docs/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/docs/getting-started.md -------------------------------------------------------------------------------- /generate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/generate.php -------------------------------------------------------------------------------- /mysql/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/mysql/Dockerfile -------------------------------------------------------------------------------- /mysql/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/mysql/my.cnf -------------------------------------------------------------------------------- /templates/.my.cnf: -------------------------------------------------------------------------------- 1 | [mysqldump] 2 | max_allowed_packet=1024M 3 | -------------------------------------------------------------------------------- /templates/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/templates/Dockerfile -------------------------------------------------------------------------------- /templates/apache-sites-available-default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/templates/apache-sites-available-default.conf -------------------------------------------------------------------------------- /templates/apache.conf: -------------------------------------------------------------------------------- 1 | ServerName ${BASE_URL} 2 | -------------------------------------------------------------------------------- /templates/civicrm-docker-entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/templates/civicrm-docker-entrypoint -------------------------------------------------------------------------------- /templates/civicrm-docker-load: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/templates/civicrm-docker-load -------------------------------------------------------------------------------- /templates/civicrm_dump.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/templates/civicrm_dump.php -------------------------------------------------------------------------------- /templates/drupal.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/templates/drupal.Dockerfile -------------------------------------------------------------------------------- /templates/drupal.civicrm-docker-dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/templates/drupal.civicrm-docker-dump -------------------------------------------------------------------------------- /templates/drupal.civicrm-docker-init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/templates/drupal.civicrm-docker-init -------------------------------------------------------------------------------- /templates/drupal.civicrm-docker-install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/templates/drupal.civicrm-docker-install -------------------------------------------------------------------------------- /templates/drupal.civicrm.settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/templates/drupal.civicrm.settings.php -------------------------------------------------------------------------------- /templates/drupal.settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/templates/drupal.settings.php -------------------------------------------------------------------------------- /templates/msmtp-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/templates/msmtp-wrapper -------------------------------------------------------------------------------- /templates/wordpress.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/templates/wordpress.Dockerfile -------------------------------------------------------------------------------- /templates/wordpress.civicrm-docker-dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/templates/wordpress.civicrm-docker-dump -------------------------------------------------------------------------------- /templates/wordpress.civicrm-docker-init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/templates/wordpress.civicrm-docker-init -------------------------------------------------------------------------------- /templates/wordpress.civicrm-docker-install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/templates/wordpress.civicrm-docker-install -------------------------------------------------------------------------------- /templates/wordpress.civicrm.settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/templates/wordpress.civicrm.settings.php -------------------------------------------------------------------------------- /templates/wordpress.wp-config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/templates/wordpress.wp-config.php -------------------------------------------------------------------------------- /update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/update.php -------------------------------------------------------------------------------- /variables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcandrew/civicrm-docker/HEAD/variables.php --------------------------------------------------------------------------------