M
marian.edu
Guest
That's nice Bronco, a bit disappointed you've striped down the serials from those response.ini files though
A few random thoughts... - using ADD instead of COPY for .tar.gz files saves you the unarchive run command (docker will copy/extract files from 'standard' archives) - better to group multiple RUNs in one command (&&) to reduce the number of intermediate containers - `--rm=true` on build will remove intermediate containers (no need to export/import to 'flatten' the image) - think we don't need to install java anymore, PSC ships one version bundled (got everything working without it) - my preference is to have different components in separate containers (database, application server, web server, etc)... easier to maintain, much lighter images/containers, one container only runs one task as a daemon - no interactive terminal for daemon containers followed by subsequent exec statements (docker logs gives output from running process, exec can still be used with bash if need to get into that container) We still need to find out more about licensing in that environment, maybe some day there will be 'OE' images available on modulus platform 
Continue reading...
Continue reading...