Here is the looks and feel of your terminal once the tutorial has been applied on your system:
Using Homebrew:
Here is the looks and feel of your terminal once the tutorial has been applied on your system:
Using Homebrew:
/* | |
In the node.js intro tutorial (http://nodejs.org/), they show a basic tcp | |
server, but for some reason omit a client connecting to it. I added an | |
example at the bottom. | |
Save the following server in example.js: | |
*/ | |
var net = require('net'); |
docker search postgres | |
docker pull postgres | |
docker images | |
docker ps -a | |
docker run -e POSTGRES_PASSWORD=changeme -d postgres | |
docker log -f {name} | |
docker inspect {name} | less |