An open API service indexing awesome lists of open source software.

https://github.com/omarmakled/docker-for-newbie

Simple demo php docker
https://github.com/omarmakled/docker-for-newbie

docker docker-compose mysql nginx

Last synced: 2 months ago
JSON representation

Simple demo php docker

Awesome Lists containing this project

README

          

### Intro
Create a docker container for PHP demos ONLY

### Installation
`docker-compose up --build -d`

### DB
```
docker-compose exec db /bin/sh
mysql -u root -p secret
```

### PHP
```
docker-compose exec php composer install
docker-compose exec php composer ./vendor/bin/phpunit tests
```