Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/markmachine/docker-node

basic docker container using node and express
https://github.com/markmachine/docker-node

docker-container docker-node

Last synced: 7 days ago
JSON representation

basic docker container using node and express

Awesome Lists containing this project

README

        

# docker-node basic container

This module steps through the basic process for creating a Docker container based on NodeJs.

* [build](#build)
* [run](#run)
* [push](#push)
* [pull](#pull)

## build
```console
docker build -f Dockerfile -t markhughes/docker-node .
```

## run
```console
docker run -d -p 8080:3000 markhughes/docker-node
```

## push
```console
docker push markhughes/docker-node
```

## pull
```console
docker pull markhughes/docker-node
```

## Sources

image on [dockerhub](https://hub.docker.com/r/markhughes/docker-node/)

src on [github](https://github.com/markmachine/docker-node)