I have a WebLogic 12.1.2 image that I'm looking to auto deploy an application ear on to.
I can do this when building the image using the Dockerfile i.e.
COPY some.ear /u01/domains/mydomain/autodeploy
The container run using this image runs fine and I can reach my application REST interface with Postman.
However, if I restart that container, the autodeployed application no longer exists in the container's WebLogic console and hence Postman calls fail. The ear file is still in the autodeploy directory on restart.
Has anyone seen this behaviour before?