diff --git a/README.rst b/README.rst index 66c87d17..1d1d5acc 100644 --- a/README.rst +++ b/README.rst @@ -43,7 +43,7 @@ To use this container, use these simple instructions: :: - docker run -d --name armada -p 8000:8000 -v ~/.kube/config:/root/.kube/config -v $(pwd)/examples/:/examples -v /tmp:/dev/log quay.io/attcomdev/armada:latest + docker run -d --name armada -v ~/.kube/config:/root/.kube/config -v $(pwd)/examples/:/examples quay.io/attcomdev/armada:latest Manual Install ~~~~~~~~~~~~~~ @@ -53,7 +53,7 @@ If you want to build the docker image, follow these steps: :: docker build . -t /armada - docker run -d --name armada -p 8000:8000 -v ~/.kube/config:/root/.kube/config -v $(pwd)/examples/:/examples /armada + docker run -d --name armada -v ~/.kube/config:/root/.kube/config -v $(pwd)/examples/:/examples /armada Installation ------------ @@ -116,4 +116,3 @@ Your output will look something like this: :target: https://travis-ci.org/att-comdev/armada .. |Doc Status| image:: https://readthedocs.org/projects/armada-helm/badge/?version=latest :target: http://armada-helm.readthedocs.io/ - diff --git a/docs/source/development/getting-started.rst b/docs/source/development/getting-started.rst index 534b7352..2824db25 100644 --- a/docs/source/development/getting-started.rst +++ b/docs/source/development/getting-started.rst @@ -8,13 +8,14 @@ Docker To use the docker containter to develop: 1. Fork the [repo](http://github.com/att-comdev/armada) -2. After making changes push to repo and build from forked repo +2. Clone the forked repo +3. After making changes push to repo and build from forked repo .. code-block:: bash export repo="https://github.com//armada.git" export branch="" - docker build . -p 8000:8000 -v ${HOME}/.kube/config:/root/.kube/config -t quay.io/attcomdev/armada:latest --build-arg REPO=$repo --build-arg VERSION=$branch + docker build . -t quay.io/attcomdev/armada:latest --build-arg REPO=$repo --build-arg VERSION=$branch .. note::