https://github.com/ludofleury/docker-library
Docker containers for dev env
https://github.com/ludofleury/docker-library
Last synced: about 1 month ago
JSON representation
Docker containers for dev env
- Host: GitHub
- URL: https://github.com/ludofleury/docker-library
- Owner: ludofleury
- Created: 2015-05-04T11:16:28.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-05-18T00:18:44.000Z (over 10 years ago)
- Last Synced: 2025-01-23T03:28:17.373Z (9 months ago)
- Homepage:
- Size: 137 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Personal docker library used in dev env
```
alias composer='docker run -it --rm -v `pwd`:/app -w /app composer/composer'
alias node='docker run -it --rm -v `pwd`:/app -w /app node node'
alias npm='docker run -it --rm -v `pwd`:/app -w /app node npm'
alias php-cs-fixer='docker run -it --rm -v `pwd`:/app -w /app ludofleury/php-cs-fixer'
alias phpspec='docker run -it --rm -v `pwd`:/app -w /app phpspec/phpspec'
```