├── .docker ├── build.properties └── install-shopware.sh ├── .gitattributes ├── Dockerfile ├── README.md ├── docker-compose.yml └── run.sh /.docker/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware-tutorial/docker-shopware-php7/HEAD/.docker/build.properties -------------------------------------------------------------------------------- /.docker/install-shopware.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware-tutorial/docker-shopware-php7/HEAD/.docker/install-shopware.sh -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.sh eol=lf -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware-tutorial/docker-shopware-php7/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware-tutorial/docker-shopware-php7/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware-tutorial/docker-shopware-php7/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware-tutorial/docker-shopware-php7/HEAD/run.sh --------------------------------------------------------------------------------