https://github.com/shprink/wphc-dockerbox
https://github.com/shprink/wphc-dockerbox
Last synced: 29 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/shprink/wphc-dockerbox
- Owner: shprink
- License: mit
- Created: 2015-07-23T20:52:52.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-09-25T03:57:03.000Z (over 9 years ago)
- Last Synced: 2025-01-29T10:46:29.039Z (3 months ago)
- Homepage: https://registry.hub.docker.com/u/shprink/wphc-dockerbox/
- Size: 148 KB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Install
```
docker run -it -p :8080 shprink/wphc-dockerbox bash
```## Build (only for the owner)
```
docker build -t shprink/wphc-dockerbox .
docker push shprink/wphc-dockerbox
```## Commands
* To see running containers: ```docker ps```
* To see all containers: ```docker ps -a```
* To stop a container: ```docker stop [container_id_or_name]```
* To start an existing container: ```docker start [container_id_or_name]```
* To see the logs of a container:```docker logs -f [container_id_or_name] -f is```
* To remove a container: ```docker rm ```
* To remove all containers: ```docker rm $(docker ps -a -q)```
* To remove images: ```docker rmi ```
* To remove all images: ```docker rmi $(docker images -a -q)```## Install WPHC Commands
```
npm run installWPHC && npm run installCordovanpm run devserver
npm run dumpdev
npm run dumpprod
npm run build
```