Fix instruction to spawn development containers

It is better to directly go into the `develop` folder and start `docker-compose` from there. Otherwise it might try to copy everything within the current directory into the docker build context.
This commit is contained in:
Konrad Kleine 2015-07-01 14:02:57 +02:00
parent 6c0b2c5174
commit b787a58fc7

View file

@ -13,7 +13,7 @@ This method shows how you can code on the angularJS frontend code and directly s
1. Start a frontend container and a testing registry container in the background:
`docker-compose -f docker-registry-frontend/develop/docker-compose.yml up -d`
`cd docker-registry-frontend/develop && docker-compose up`
1. Navigate to [http://localhost:9000](http://localhost:9000) on your development machine and see the docker-registry-frontend in action. Note, that the testing registry does not persistently store changes and when started for the first time, it will not contain any repository nor image.