Hi Mauro, If you can install your webapp on a Linux VM first, it's easy to repackage it for a Docker install. Just prepare a folder with copies of the TomEE install (assuming /opt here), and anything else needed (assuming /etc for e.g. daemon init scripts), and a start.sh script that starts TomEE and any other services required. This would be the minimal Dockerfile:
ADD opt /opt ADD etc /etc ADD start.sh /root/ EXPOSE 443 WORKDIR /root CMD ./start.sh -- Bjorn Danielsson Cuspy Code AB mauro2java2011 <[email protected]> wrote: > Hi all. > I am newbie to docker container. > I would try to install a my web app with tomee using docker container. > > Please i ask if exist a tutorial or article on a blog that explain to > install tomee with docker. > > > > > -- > View this message in context: > http://tomee-openejb.979440.n4.nabble.com/INSTALL-TOMEE-with-docker-tp4677016.html > Sent from the TomEE Users mailing list archive at Nabble.com.
