Make build issue #1934
-
Hi docker build --quiet --build-arg LAGOON_VERSION=development --build-arg IMAGE_REPO=lagoon --build-arg ALPINE_VERSION=3.11 -t lagoon/oc -f images/oc/Dockerfile images/oc Did I miss a step or variable somewhere?, looks like its trying to pull from a private internet docker registry? Thanks. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
In the Make build process, it should have tried to make the lagoon/commons image first (as per https://github.com/amazeeio/lagoon/blob/master/Makefile#L197) Do you have the lagoon/commons image on your local docker image registry? If you want to check and retry: You can always build the commons image manually |
Beta Was this translation helpful? Give feedback.
-
Interesting, I'll try and build the image manually, it was a first run,
it's on regular docker network, which is 172. I believe but the
instructions say the registry is at 192. Would that make a difference?,
That would make sense if I was running on virtual box maybe.
Update: make clean got it going currently building the images.
|
Beta Was this translation helpful? Give feedback.
-
Containers built properly, they all seem to be running, no error logs from what I can see but when accessing the lagoon ui I get this: Please wait while we log you in... |
Beta Was this translation helpful? Give feedback.
In the Make build process, it should have tried to make the lagoon/commons image first (as per https://github.com/amazeeio/lagoon/blob/master/Makefile#L197)
Do you have the lagoon/commons image on your local docker image registry?
If you want to check and retry:
make clean
- removes the temp files we touch to show an image has been built, and thenmake build
- or if you've got moar powermake -j6 build
to build in parallel.You can always build the commons image manually
make build/commons
- but I'm not sure why this didn't work in your case?