├── .gitignore ├── README.md ├── apache ├── Dockerfile ├── bitrix.ini ├── cron_events.sh ├── date-timezone.conf ├── encoding.conf ├── php-mail.ini ├── revaliases.tmpl ├── servername.conf.tmpl ├── ssmtp.conf.tmpl └── start.sh ├── docker-compose.yml ├── mysql ├── Dockerfile ├── README.md ├── custom.cnf └── minimal.cnf └── www ├── bitrixsetup.php └── restore.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nejtr0n/bitrix_dockerized_env/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nejtr0n/bitrix_dockerized_env/HEAD/README.md -------------------------------------------------------------------------------- /apache/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nejtr0n/bitrix_dockerized_env/HEAD/apache/Dockerfile -------------------------------------------------------------------------------- /apache/bitrix.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nejtr0n/bitrix_dockerized_env/HEAD/apache/bitrix.ini -------------------------------------------------------------------------------- /apache/cron_events.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nejtr0n/bitrix_dockerized_env/HEAD/apache/cron_events.sh -------------------------------------------------------------------------------- /apache/date-timezone.conf: -------------------------------------------------------------------------------- 1 | php_admin_value date.timezone Europe/Moscow -------------------------------------------------------------------------------- /apache/encoding.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nejtr0n/bitrix_dockerized_env/HEAD/apache/encoding.conf -------------------------------------------------------------------------------- /apache/php-mail.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nejtr0n/bitrix_dockerized_env/HEAD/apache/php-mail.ini -------------------------------------------------------------------------------- /apache/revaliases.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nejtr0n/bitrix_dockerized_env/HEAD/apache/revaliases.tmpl -------------------------------------------------------------------------------- /apache/servername.conf.tmpl: -------------------------------------------------------------------------------- 1 | ServerName $SMTP_HOSTNAME 2 | -------------------------------------------------------------------------------- /apache/ssmtp.conf.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nejtr0n/bitrix_dockerized_env/HEAD/apache/ssmtp.conf.tmpl -------------------------------------------------------------------------------- /apache/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nejtr0n/bitrix_dockerized_env/HEAD/apache/start.sh -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nejtr0n/bitrix_dockerized_env/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /mysql/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nejtr0n/bitrix_dockerized_env/HEAD/mysql/Dockerfile -------------------------------------------------------------------------------- /mysql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nejtr0n/bitrix_dockerized_env/HEAD/mysql/README.md -------------------------------------------------------------------------------- /mysql/custom.cnf: -------------------------------------------------------------------------------- 1 | [mysqld] 2 | max_allowed_packet=1024M 3 | default-time-zone='+03:00' 4 | sql_mode= 5 | -------------------------------------------------------------------------------- /mysql/minimal.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nejtr0n/bitrix_dockerized_env/HEAD/mysql/minimal.cnf -------------------------------------------------------------------------------- /www/bitrixsetup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nejtr0n/bitrix_dockerized_env/HEAD/www/bitrixsetup.php -------------------------------------------------------------------------------- /www/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nejtr0n/bitrix_dockerized_env/HEAD/www/restore.php --------------------------------------------------------------------------------