Skip to content
This repository has been archived by the owner on Jul 19, 2022. It is now read-only.

vmware-archive/cf-docker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

cf-docker

Getting Started on Pushing Docker Images to CF

Diego can run Docker images. Refer to the Diego design notes https://github.com/cloudfoundry-incubator/diego-design-notes/blob/master/docker-support.md

Here is a cheat sheet on how to run them

TEST
  $docker run hello-world
  $docker run -it ubuntu bash
  • Login to Docker Hub
  $docker login

Your Authentication credentials will be stored in ~/.docker/config.json

  • Search and Pull an Image
$docker search centos
$docker pull centos
$docker images
  • Create a Repository on Docker Hub
https://hub.docker.com/
  • Create a Docker File and Build a Docker Image Docker Nodejs Example Alternatively, clone this repo and it has the Dockerfile, manifest.yml, index.js you need to build and run the docker container.
$docker build -t rjain15/centos-node-hello .
  • Push it in the Repo
$docker push rjain15/centos-node-hello
  • Pull it down from Repo
$docker pull rjain15/centos-node-hello
  • Get the IP Address of your local Docker VM
$docker-machine ls
NAME      ACTIVE   DRIVER       STATE     URL                         SWARM
default   *        virtualbox   Running   tcp://192.168.99.100:2376   ```

* Testing it locally
```script
$docker run -d -P --name web rjain15/centos-node-hello
$docker ps
  • To get the Local Port Number
$docker port web
8080/tcp -> 0.0.0.0:32768
curl -i http://192.168.99.100:32768
  • Push docker image to cf
cf push --docker-image rjain15/centos-node-hello -c "node /src/index.js"
Note: The start command should be same as the CMD from the Dockerfile
  • cf apps
node-first-app-docker   started           1/1         512M     1G     node-first-app-docker-beachy-playdown.west-1.fe.gopivotal.com   
  • Test CF
curl -i http://node-first-app-docker-beachy-playdown.west-1.fe.gopivotal.com
HTTP/1.1 200 OK
Content-Length: 12
Content-Type: text/html; charset=utf-8
Date: Wed, 28 Oct 2015 15:32:29 GMT
X-Cf-Requestid: 9cb1ed82-25e3-4ea0-6894-e3bd418bbf2a
X-Powered-By: Express

Hello World