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
- Host: GitHub
- URL: https://github.com/omarmakled/docker-for-newbie
- Owner: OmarMakled
- License: mit
- Created: 2023-09-17T23:18:03.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-09-22T22:04:11.000Z (almost 3 years ago)
- Last Synced: 2025-02-26T12:14:44.998Z (over 1 year ago)
- Topics: docker, docker-compose, mysql, nginx
- Language: PHP
- Homepage:
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
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
```