Andrew J. Huffman
Andrew J. Huffman
This is an idea I have floating around on how to potentially solve this particular issue, and is open to feedback and discussion: Given values passed in with either the...
We do have the %v{r somefile.yaml}, but I want to look up (query) that file for the dynamic value's contents.
@JefeDavis yes, that's true. You could use a single query and many injectPaths. I think the problem here is that the query is returning something that does in fact exist,...
Although on second thought, I feel that it should be handling each query in the array as a separate item, and therefore only the ones that are missing are to...
`onMissing.injectPath` can already be a [string or array](https://docs.yaml-overlay-tool.io/sections/instructionsFileSpec.html), so that functionality should already exist. The problem there is that if any 1 of the queries in the array was missing...
Essentially each item in `query` should be handled one at a time and be set with the desired `value`. `onMissing.action` should only come into play if the item being queried...
I'd move the drupal core download and extract stuff into an entrypoint.sh (instead of the dockerfile,) with a VOLUME at /var/www/html, as part of entrypoint check to see if the...
You could also use Environment variables to pull in all the config stuff that might get lost on restarting a container. Check out the Wordpress or Joomla containers. There should...
@aborilov The copy doesn't have to be in entrypoint.sh. They need a VOLUME or multiple VOLUME entries in the Dockerfile. A VOLUME entry flushes the data to a bind mounted...
I've taken a crack at fixing this in my fork. I've almost got it, but could use some assistance troubleshooting, as I'm not too familiar with how the php-fpm image...