├── .gitignore ├── Dockerfile ├── Documentation ├── adding-keys-to-container.md ├── debugging-with-xdebug-in-phpstorm.md ├── importing-a-shop.md ├── inspecting-emails.md ├── magento-1-install.md ├── starting-the-container.md └── switching-php-versions.md ├── README.md ├── examples ├── linux_development │ ├── Dockerfile │ ├── README.md │ └── https.dummytag.hypernode.io.conf └── osx_development │ ├── .gitignore │ ├── README.md │ ├── docker-compose.yml │ ├── docker-sync.yml │ └── magento │ └── index.php ├── index.html └── keys ├── README.md ├── insecure_key └── insecure_key.pub /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | getip.php 3 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteInternet/hypernode-docker/HEAD/Dockerfile -------------------------------------------------------------------------------- /Documentation/adding-keys-to-container.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteInternet/hypernode-docker/HEAD/Documentation/adding-keys-to-container.md -------------------------------------------------------------------------------- /Documentation/debugging-with-xdebug-in-phpstorm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteInternet/hypernode-docker/HEAD/Documentation/debugging-with-xdebug-in-phpstorm.md -------------------------------------------------------------------------------- /Documentation/importing-a-shop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteInternet/hypernode-docker/HEAD/Documentation/importing-a-shop.md -------------------------------------------------------------------------------- /Documentation/inspecting-emails.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteInternet/hypernode-docker/HEAD/Documentation/inspecting-emails.md -------------------------------------------------------------------------------- /Documentation/magento-1-install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteInternet/hypernode-docker/HEAD/Documentation/magento-1-install.md -------------------------------------------------------------------------------- /Documentation/starting-the-container.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteInternet/hypernode-docker/HEAD/Documentation/starting-the-container.md -------------------------------------------------------------------------------- /Documentation/switching-php-versions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteInternet/hypernode-docker/HEAD/Documentation/switching-php-versions.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteInternet/hypernode-docker/HEAD/README.md -------------------------------------------------------------------------------- /examples/linux_development/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteInternet/hypernode-docker/HEAD/examples/linux_development/Dockerfile -------------------------------------------------------------------------------- /examples/linux_development/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteInternet/hypernode-docker/HEAD/examples/linux_development/README.md -------------------------------------------------------------------------------- /examples/linux_development/https.dummytag.hypernode.io.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteInternet/hypernode-docker/HEAD/examples/linux_development/https.dummytag.hypernode.io.conf -------------------------------------------------------------------------------- /examples/osx_development/.gitignore: -------------------------------------------------------------------------------- 1 | /.docker-sync 2 | -------------------------------------------------------------------------------- /examples/osx_development/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteInternet/hypernode-docker/HEAD/examples/osx_development/README.md -------------------------------------------------------------------------------- /examples/osx_development/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteInternet/hypernode-docker/HEAD/examples/osx_development/docker-compose.yml -------------------------------------------------------------------------------- /examples/osx_development/docker-sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteInternet/hypernode-docker/HEAD/examples/osx_development/docker-sync.yml -------------------------------------------------------------------------------- /examples/osx_development/magento/index.php: -------------------------------------------------------------------------------- 1 |