Drew Gingerich
Drew Gingerich
Hi @dak1n1, Thanks for the explanation. I can see how it would be easy to get bit if `KUBECONFIG` is used automatically, and your move away from it makes sense...
That's great! I missed that, thank you. So with that, while I think official containers would be convenient they wouldn't add much and I understand if this is low /...
Hi @sbarzowski I did see the `|||` text block, but I did not see a way to replace the newlines with it. I've done this with a small function, but...
A possible solution in a different direction: make a script to enable maintenance mode, create mysqldump, disable maintenance mode, and maybe prune old dumps. Run this on a schedule, totally...
I think having an image with cron built in will be useful to many. I do want to bring up that orchestration tools such as Kubernetes and Nomad have native...
I'd love for nushell to get XDG support on macOS. I took nushell for a spin recently and I really like it, but was surprised the config is stored under...
I'd love to be able to commit a Mason lockfile alongside my nvim config so that when I move to a different computer Mason can automatically install everything I installed...
I think the Docker container only runs one command and then exits. I believe autorestic itself doesn't do any task scheduling, [leaving it up to tools like cron](https://autorestic.vercel.app/location/cron) or systemd...
@mayorandrew Your hook was very helpful, thank you! You seriously saved my butt, helping me understand the problem and realize what's possible. In the project I'm on atm I noticed...
Like you point out, it seems like the installation step could be moved into the image build: ```diff FROM jetpackio/devbox:latest # Installing your devbox project WORKDIR /code USER root:root RUN...