Andrew Goode

Results 45 comments of Andrew Goode

Related to #322, which will probably be tackled with #313.

I'm +1 for this change as well. This is how a lot of other db migration systems work e.g. [Flyway](https://flywaydb.org/getstarted/how). "Well, why not use Flyway?" you ask - because I...

In the meantime, there's an unofficial Darwin binary available here: https://github.com/nexdrew/migrate/releases/tag/v3.1.0-nexdrew1

@d33tah Hi 👋 and thanks! Building in the option to generate YAML output for docker-compose is an interesting idea. I'm not quite sure how much work it will be, but...

Are you on an ARM system, by any chance? Note that the current Docker image for rekcod (`nexdrew/rekcod:3.0.0`) was built for an `amd64` architecture: ```console $ docker image inspect nexdrew/rekcod:3.0.0...

Ok, I've learned a bit from this blog about how to build images for multiple platforms: https://www.docker.com/blog/multi-arch-images/ It essentially boils down to enabling and using the [`buildx` Docker CLI plugin](https://github.com/docker/buildx)...

I successfully pushed a special tag called `nexdrew/rekcod:3.0.0arm` to Docker Hub that _should_ support a 64 bit (`linux/arm64`) and a 32 bit (`linux/arm/v7`) version of ARM. Give this a shot...

There's a way to do this that doesn't require multiple passes of parsing. The trick is getting access to the appropriate `Api` instance and using the right hooks to apply...

My goal in sharing code examples is just to see/prove if a possible solution exists. I agree that, many times, the examples are advanced, and I don't really expect most...

Yes, you're right, a lot of documentation is still lacking. Unfortunately it takes more time than I have available at the moment to write good docs, and I may have...