WASdev / ci.docker.websphere-traditional

Dockerfiles for WebSphere Application Server traditional
Apache License 2.0
171 stars 192 forks source link

Question about properties-based configuration #148

Closed kgibm closed 5 years ago

kgibm commented 5 years ago

The main README uses this example for a properties-based configuration update:

[...]
ResourceId=Cell=!{cellName}:Node=!{nodeName}:Server=!{serverName}:JavaProcessDef=ID#JavaProcessDef_1183122130078:JavaVirtualMachine=ID#JavaVirtualMachine_1183122130078
[...]

I'm just curious if the JavaProcessDef_1183122130078 is required? Is that just what happens to be the unique ID embedded into the image and therefore the one that needs to be updated?

arthurdm commented 5 years ago

@arturdzm ^

arturdzm commented 5 years ago

In this case its optional and this should also work:

ResourceId=Cell=!{cellName}:Node=!{nodeName}:Server=!{serverName}:JavaProcessDef=:JavaVirtualMachine=

The specific IDs are required in case there are multiple objects of the same type, eg DataSources

kgibm commented 5 years ago

Thanks.