This is a simple UI for creating Dockerfiles. It was built at a hackathon so please ignore the quality of the code. On day I might have time to rebuild it nicely with gulp + webpack + modules etc.
- Autocomplete
FROM
base images from Docker Hub - Direct download
- Save as Gist
-
Top
-
FROM
- Add
- Select2 Autocomplete
-
MAINTAINER
- Add
- Styling
-
LABEL
- Add
- Auto-add
- Styling
-
-
Bottom
ENTRYPOINT
- Add
- Auto-add
- Styling
CMD
- Add
- Auto-add
- Styling
VOLUME
- Add
- Auto-add
- Styling
EXPOSE
- Add
- Auto-add
- Styling
-
Main
- [ ]
RUN
- [ ]
WORKDIR
- [ ]
ENV
- [ ]
ADD
- [ ]
COPY
- [ ]
-
Preview
-
Download
-
Save history locally
-
Import Dockerfile (from gist only?)
-
Tab auto add
-
Design
- Input Styling
- Select2 Styling
- Mobile view for the form
USER
andONBUILD
are unsupported (could be easily be added)CMD
,ENTRYPOINT
,VOLUME
&EXPOSE
are put at the end of the Dockerfile- No comments
- No support for multiline label values
- Only exec form for CMD & ENTRYPOINT - no shell form
https://docs.docker.com/v1.8/reference/builder/
FROM
MAINTAINER
RUN
CMD
LABEL
EXPOSE
ENV
ADD
COPY
ENTRYPOINT
VOLUME
USER
WORKDIR
ONBUILD
top:
FROM
MAINTAINER
LABEL
main:
RUN
WORKDIR
ENV
ADD
COPY
bottom:
ENTRYPOINT
CMD
VOLUME
EXPOSE
unsupported:
USER
ONBUILD