From 41c482d0d8e6639acc8628aaed91020bd32f1a5f Mon Sep 17 00:00:00 2001 From: yep Date: Fri, 20 Mar 2015 11:35:09 +0100 Subject: [PATCH] Fix container name: use `progrium/rootbuilder` instead of `rootbuilder` There does not seem to exist a container named `rootbuilder`, as shown by the search: https://registry.hub.docker.com/search?q=rootbuilder Error message was: ``` $ cd example && make config docker run -it rootbuilder make nconfig Unable to find image 'rootbuilder:latest' locally Pulling repository rootbuilder FATA[0004] Error: image library/rootbuilder:latest not found make: *** [config] Error 1 ``` --- example/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/Makefile b/example/Makefile index dce32ac..e109fda 100644 --- a/example/Makefile +++ b/example/Makefile @@ -1,7 +1,7 @@ .PHONY: config config: - docker run -it rootbuilder make nconfig + docker run -it progrium/rootbuilder make nconfig docker cp `docker ps -lq`:/tmp/buildroot/.config . docker rm `docker ps -lq` mv .config config