├── .gitignore ├── Dockerfile ├── README.md ├── docker-compose.example.yml └── start.sh /.gitignore: -------------------------------------------------------------------------------- 1 | docker-compose.yml 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulsmith/alpine-apache-php7/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulsmith/alpine-apache-php7/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulsmith/alpine-apache-php7/HEAD/docker-compose.example.yml -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulsmith/alpine-apache-php7/HEAD/start.sh --------------------------------------------------------------------------------