https://github.com/dmitryuk/vips-demo
https://github.com/dmitryuk/vips-demo
Last synced: 9 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/dmitryuk/vips-demo
- Owner: dmitryuk
- Created: 2024-02-14T10:37:21.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-02-14T10:46:23.000Z (over 2 years ago)
- Last Synced: 2024-02-14T11:38:34.194Z (over 2 years ago)
- Language: Dockerfile
- Size: 32.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
```
docker build . --tag="test_image"
docker run -it -v $PWD:/var/www/html test_image sh -c "composer install && php test.php"
// error occured
//without xdebug - no error
docker run -it -v $PWD:/var/www/html test_image sh -c "XDEBUG_MODE=off && composer install && php test.php"
```