-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docker/dockerfile repository on Docker Hub does not have a README/description #756
Comments
The description about the process is in #528 (comment) |
Ah, yes; not sure how to get a README up on Docker Hub though; guess we need copy/paste something there manually? |
I think there is an API but it would be simplest/easiest to just have someone with suitable creds just add it via the webui. Perhaps best to keep it fairly high level with a link to the specifics to avoid having to edit it very often... |
Yes, a short description that these images are used by the BuildKit builder, an explanation of the tagging scheme, a |
From reading frontend/dockerfile/docs/experimental.md I also have no idea what I should be doing.
If I run that nothing good seems to happen.
|
@rcjsuen the image should not be run as a container, but it's used behind the scenes by buildkit if you use a # syntax = docker/dockerfile:experimental
FROM alpine
RUN --mount=type=cache,target=/var/cache/apk apk add curl And build it with DOCKER_BUILDKIT=1 docker build . You'll see that buildkit pulls the frontend image as part of the build process;
|
@thaJeztah Ah, it is starting to make sense now. Thank you very much. The only way then to test the experimental features without modifying my local |
@rcjsuen if you are on a current version of docker (18.06 with experimental features enabled, or 18.09), you can use those experimental features just by enabling buildkit ( |
@thaJeztah I understand. I see I clearly missed that when reading the Thank you for your patience with me and your help! Have a nice day! |
The official Dockerfile repository on Docker Hub does not have a description https://hub.docker.com/r/docker/dockerfile
We should have a README in that repository to;
@tonistiigi @mataneja @seemethere
The text was updated successfully, but these errors were encountered: