You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 25, 2023. It is now read-only.
I'm sad to see that the project is discontinued :-(
From the README:
Now, most of the critical and outstanding features of rocker can be easily covered by docker build or other well-supported tools.
Could you please give some advice on how to replace rocker's template support with standard Docker?
We have many images that heavily rely on templating to support inheritance and various versions of OSes and tools, which was the main reason we used rocker. Docker simply had way too many unnecessary restrictions. Has this changed lately?
A typical image starts with: {{ define "parentImageTpl"}}{{ .parentImageNamePrefix }}utils:{{ .distroName }}{{ .distroVersion }}{{end}} FROM {{template "parentImageTpl" .}}
Also, how to support MOUNT during build with standard docker?
E.g. # yum cache using rocker mount {{ if (ne .packageCache "") }} MOUNT {{ .packageCache }}/yum:/var/cache/yum {{end}}
Any advice would be appreciated!
The text was updated successfully, but these errors were encountered:
I'm sad to see that the project is discontinued :-(
From the README:
Could you please give some advice on how to replace rocker's template support with standard Docker?
We have many images that heavily rely on templating to support inheritance and various versions of OSes and tools, which was the main reason we used rocker. Docker simply had way too many unnecessary restrictions. Has this changed lately?
A typical image starts with:
{{ define "parentImageTpl"}}{{ .parentImageNamePrefix }}utils:{{ .distroName }}{{ .distroVersion }}{{end}} FROM {{template "parentImageTpl" .}}
Also, how to support MOUNT during build with standard docker?
E.g.
# yum cache using rocker mount {{ if (ne .packageCache "") }} MOUNT {{ .packageCache }}/yum:/var/cache/yum {{end}}
Any advice would be appreciated!
The text was updated successfully, but these errors were encountered: