├── .github └── workflows │ ├── build-docker-images.yaml │ └── delete-unused-packages.yaml ├── LICENSE ├── README.md ├── alpine ├── Dockerfile └── Dockerfile.base ├── debian ├── Dockerfile └── Dockerfile.base └── rootfs └── opt ├── bin ├── pack-app ├── pack-plugin ├── phpunit └── start-mysql └── share └── shopware └── tests └── TestBootstrapper.php /.github/workflows/build-docker-images.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/platform-plugin-dev-docker/HEAD/.github/workflows/build-docker-images.yaml -------------------------------------------------------------------------------- /.github/workflows/delete-unused-packages.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/platform-plugin-dev-docker/HEAD/.github/workflows/delete-unused-packages.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/platform-plugin-dev-docker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/platform-plugin-dev-docker/HEAD/README.md -------------------------------------------------------------------------------- /alpine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/platform-plugin-dev-docker/HEAD/alpine/Dockerfile -------------------------------------------------------------------------------- /alpine/Dockerfile.base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/platform-plugin-dev-docker/HEAD/alpine/Dockerfile.base -------------------------------------------------------------------------------- /debian/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/platform-plugin-dev-docker/HEAD/debian/Dockerfile -------------------------------------------------------------------------------- /debian/Dockerfile.base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/platform-plugin-dev-docker/HEAD/debian/Dockerfile.base -------------------------------------------------------------------------------- /rootfs/opt/bin/pack-app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/platform-plugin-dev-docker/HEAD/rootfs/opt/bin/pack-app -------------------------------------------------------------------------------- /rootfs/opt/bin/pack-plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/platform-plugin-dev-docker/HEAD/rootfs/opt/bin/pack-plugin -------------------------------------------------------------------------------- /rootfs/opt/bin/phpunit: -------------------------------------------------------------------------------- 1 | /opt/shopware/vendor/bin/phpunit -------------------------------------------------------------------------------- /rootfs/opt/bin/start-mysql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/platform-plugin-dev-docker/HEAD/rootfs/opt/bin/start-mysql -------------------------------------------------------------------------------- /rootfs/opt/share/shopware/tests/TestBootstrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/platform-plugin-dev-docker/HEAD/rootfs/opt/share/shopware/tests/TestBootstrapper.php --------------------------------------------------------------------------------