Hi all,
I am a complete newbie to dockre and i am captivated by its possiblities…
i was trying to create a new image from my local jboss wildfly installation,
but i am unsure on how to proceed with that, i surely dont want it to be based on the docker/wildfly image.
i want my own configurations on it.
So,
can i tar it up and import as a docker image ?
OR
how should this be made possible ?
I had tried to tar and import my existing wildfly folder, though the image was created i was getting error while running the image.
“Error response from daemon: could not find command”
should i try creating a dockerfile from scratch but while i build the same it was breaking on RUN with
somethign like dockerfile added below
FROM scratch
RUN tar xf ./wildfly.tar \
&& mv wildfly /opt/jboss/wildfly
EXPOSE 8080
CMD ["/opt/jboss/wildfly/bin/standalone.sh", “-b”, “0.0.0.0”, “-bmanagement”, “0.0.0.0”]
any help would be much appreciated
thanks