├── .env.dist ├── .gitattributes ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── README_cn.md ├── _config.yml ├── bin ├── dev_command │ ├── build │ ├── config │ ├── console │ ├── down │ ├── exec │ ├── logs │ ├── mysql │ ├── mysqldump │ ├── php │ ├── ps │ ├── restart │ ├── rm │ ├── start │ ├── stop │ └── up ├── for_ide │ ├── php7-xdebug │ └── phpunit7-xdebug └── stacker ├── composer.json ├── conf ├── dnsmasq │ ├── Dockerfile │ └── dnsmasq.conf ├── mysql │ └── conf │ │ └── my.cnf ├── nginx │ ├── Dockerfile │ └── conf │ │ ├── certs │ │ ├── server.crt │ │ └── server.key │ │ ├── fastcgi_params │ │ ├── mime.types │ │ ├── nginx.conf │ │ ├── sites-available │ │ ├── mailcatcher │ │ └── vhost │ │ │ ├── content7 │ │ │ ├── default │ │ │ ├── symfony │ │ │ ├── symfony.content.dev │ │ │ ├── symfony.content.prod │ │ │ └── symfony.env.tpl │ │ └── sites-enabled │ │ ├── 00-default │ │ ├── 20-symfony │ │ └── 99-mailcatcher ├── pgsql │ └── conf │ │ └── pgsql.conf ├── php7console │ ├── Dockerfile │ └── etc │ │ ├── .bashrc │ │ ├── .zshrc │ │ ├── php-fpm.conf │ │ └── php.ini ├── php7xdebug │ ├── Dockerfile │ └── etc │ │ ├── php-fpm.conf │ │ └── php.ini └── redis │ └── conf │ └── redis.conf ├── docker-compose.yml ├── logo.png └── test └── php └── index.php /.env.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/stacker/HEAD/.env.dist -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.conf linguist-language=Php -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | workspace 2 | .idea/ 3 | /data/* 4 | .env 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/stacker/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/stacker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/stacker/HEAD/README.md -------------------------------------------------------------------------------- /README_cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/stacker/HEAD/README_cn.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/stacker/HEAD/_config.yml -------------------------------------------------------------------------------- /bin/dev_command/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/stacker/HEAD/bin/dev_command/build -------------------------------------------------------------------------------- /bin/dev_command/config: -------------------------------------------------------------------------------- 1 | 2 | cd ${DEV_WORKDIR} && docker-compose config; 3 | exit $?; 4 | -------------------------------------------------------------------------------- /bin/dev_command/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/stacker/HEAD/bin/dev_command/console -------------------------------------------------------------------------------- /bin/dev_command/down: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/stacker/HEAD/bin/dev_command/down -------------------------------------------------------------------------------- /bin/dev_command/exec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/stacker/HEAD/bin/dev_command/exec -------------------------------------------------------------------------------- /bin/dev_command/logs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/stacker/HEAD/bin/dev_command/logs -------------------------------------------------------------------------------- /bin/dev_command/mysql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/stacker/HEAD/bin/dev_command/mysql -------------------------------------------------------------------------------- /bin/dev_command/mysqldump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/stacker/HEAD/bin/dev_command/mysqldump -------------------------------------------------------------------------------- /bin/dev_command/php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/stacker/HEAD/bin/dev_command/php -------------------------------------------------------------------------------- /bin/dev_command/ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/stacker/HEAD/bin/dev_command/ps -------------------------------------------------------------------------------- /bin/dev_command/restart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/stacker/HEAD/bin/dev_command/restart -------------------------------------------------------------------------------- /bin/dev_command/rm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/stacker/HEAD/bin/dev_command/rm -------------------------------------------------------------------------------- /bin/dev_command/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/stacker/HEAD/bin/dev_command/start -------------------------------------------------------------------------------- /bin/dev_command/stop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/stacker/HEAD/bin/dev_command/stop -------------------------------------------------------------------------------- /bin/dev_command/up: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/stacker/HEAD/bin/dev_command/up -------------------------------------------------------------------------------- /bin/for_ide/php7-xdebug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/stacker/HEAD/bin/for_ide/php7-xdebug -------------------------------------------------------------------------------- /bin/for_ide/phpunit7-xdebug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/stacker/HEAD/bin/for_ide/phpunit7-xdebug -------------------------------------------------------------------------------- /bin/stacker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/stacker/HEAD/bin/stacker -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/stacker/HEAD/composer.json -------------------------------------------------------------------------------- /conf/dnsmasq/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/stacker/HEAD/conf/dnsmasq/Dockerfile -------------------------------------------------------------------------------- /conf/dnsmasq/dnsmasq.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/stacker/HEAD/conf/dnsmasq/dnsmasq.conf -------------------------------------------------------------------------------- /conf/mysql/conf/my.cnf: -------------------------------------------------------------------------------- 1 | [mysqld] 2 | sql_mode = "" 3 | -------------------------------------------------------------------------------- /conf/nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/stacker/HEAD/conf/nginx/Dockerfile -------------------------------------------------------------------------------- /conf/nginx/conf/certs/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/stacker/HEAD/conf/nginx/conf/certs/server.crt -------------------------------------------------------------------------------- /conf/nginx/conf/certs/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/stacker/HEAD/conf/nginx/conf/certs/server.key -------------------------------------------------------------------------------- /conf/nginx/conf/fastcgi_params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/stacker/HEAD/conf/nginx/conf/fastcgi_params -------------------------------------------------------------------------------- /conf/nginx/conf/mime.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/stacker/HEAD/conf/nginx/conf/mime.types -------------------------------------------------------------------------------- /conf/nginx/conf/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/stacker/HEAD/conf/nginx/conf/nginx.conf -------------------------------------------------------------------------------- /conf/nginx/conf/sites-available/mailcatcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/stacker/HEAD/conf/nginx/conf/sites-available/mailcatcher -------------------------------------------------------------------------------- /conf/nginx/conf/sites-available/vhost/content7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/stacker/HEAD/conf/nginx/conf/sites-available/vhost/content7 -------------------------------------------------------------------------------- /conf/nginx/conf/sites-available/vhost/default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/stacker/HEAD/conf/nginx/conf/sites-available/vhost/default -------------------------------------------------------------------------------- /conf/nginx/conf/sites-available/vhost/symfony: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/stacker/HEAD/conf/nginx/conf/sites-available/vhost/symfony -------------------------------------------------------------------------------- /conf/nginx/conf/sites-available/vhost/symfony.content.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/stacker/HEAD/conf/nginx/conf/sites-available/vhost/symfony.content.dev -------------------------------------------------------------------------------- /conf/nginx/conf/sites-available/vhost/symfony.content.prod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/stacker/HEAD/conf/nginx/conf/sites-available/vhost/symfony.content.prod -------------------------------------------------------------------------------- /conf/nginx/conf/sites-available/vhost/symfony.env.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/stacker/HEAD/conf/nginx/conf/sites-available/vhost/symfony.env.tpl -------------------------------------------------------------------------------- /conf/nginx/conf/sites-enabled/00-default: -------------------------------------------------------------------------------- 1 | ../sites-available/vhost/default -------------------------------------------------------------------------------- /conf/nginx/conf/sites-enabled/20-symfony: -------------------------------------------------------------------------------- 1 | ../sites-available/vhost/symfony -------------------------------------------------------------------------------- /conf/nginx/conf/sites-enabled/99-mailcatcher: -------------------------------------------------------------------------------- 1 | ../sites-available/mailcatcher -------------------------------------------------------------------------------- /conf/pgsql/conf/pgsql.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /conf/php7console/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/stacker/HEAD/conf/php7console/Dockerfile -------------------------------------------------------------------------------- /conf/php7console/etc/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/stacker/HEAD/conf/php7console/etc/.bashrc -------------------------------------------------------------------------------- /conf/php7console/etc/.zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/stacker/HEAD/conf/php7console/etc/.zshrc -------------------------------------------------------------------------------- /conf/php7console/etc/php-fpm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/stacker/HEAD/conf/php7console/etc/php-fpm.conf -------------------------------------------------------------------------------- /conf/php7console/etc/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/stacker/HEAD/conf/php7console/etc/php.ini -------------------------------------------------------------------------------- /conf/php7xdebug/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/stacker/HEAD/conf/php7xdebug/Dockerfile -------------------------------------------------------------------------------- /conf/php7xdebug/etc/php-fpm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/stacker/HEAD/conf/php7xdebug/etc/php-fpm.conf -------------------------------------------------------------------------------- /conf/php7xdebug/etc/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/stacker/HEAD/conf/php7xdebug/etc/php.ini -------------------------------------------------------------------------------- /conf/redis/conf/redis.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/stacker/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/stacker/HEAD/logo.png -------------------------------------------------------------------------------- /test/php/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlab/stacker/HEAD/test/php/index.php --------------------------------------------------------------------------------