I have a web application packaged as a war file that is deployed to Bluemix in a Liberty container. The application stores configuration information in a collection of directories outside of the web application folder, and during initial install copies default files to that location. When I deployed this as a simple default war file, there were errors copying the default files to this location. Since Liberty doesn't expand the war file by default, I've exploded the war to a directory (defaultServer/apps/idmu.war) and used the Server Directory deploy as documented here: https://www.ng.bluemix.net/docs/starters/liberty/index.html#optionsforpushinglibertyapplications__ServerDirectory
Using the server.xml of
<server>
<featureManager>
<feature>jsp-2.3</feature>
</featureManager>
<httpEndpoint id="defaultHttpEndpoint" host="*" httpPort="8080" />
<application name="idmu" context-root="/" type="war" location="idmu.war"/>
</server>
After republishing the app with the following command
cf push idmu -p defaultServer
the application restarts and I'm still getting the file copy errors, so I suspect it's the target directory and privileges causing the problems. Any help on where to locate this directory, and how to setup the permissions is greatly appreciated.