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

https://github.com/yshplsngh/docker-image

Building docker image and Run docker container
https://github.com/yshplsngh/docker-image

docker docker-compose

Last synced: 2 months ago
JSON representation

Building docker image and Run docker container

Awesome Lists containing this project

README

          

## Simple node.js app with docker

### Helpful commands

To create Docker Image
```
docker build -t testApp .
```

To run Docker Image
```
docker run -p 4000:4000 testApp
```

To run Docker Image Container in BackGround
```
docker run -d -p 4000:4000 testApp
```

To see All Running Container
```
docker ps
```

To see All docker Image in your Local Machine
```
docker images
```

To Kill specific docker Container

```
#docker kill
docker kill 71de81055cc6
```