Equivalent to running start-single-node --insecure in the official CRDB image
Find a file
Knut Ahlers 2572c25156
Add initial (and final) Dockerfile
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2023-11-27 19:36:24 +01:00
Dockerfile Add initial (and final) Dockerfile 2023-11-27 19:36:24 +01:00
LICENSE Add initial (and final) Dockerfile 2023-11-27 19:36:24 +01:00
README.md Add initial (and final) Dockerfile 2023-11-27 19:36:24 +01:00

Why?

  • Github workflows do not allow to pass arguments to the service containers
  • cockroachdb/cockroach does not run without arguments

It was either fuck around with Githubs workflows and try to create a container in their Docker network or create an image which is periodically rebuilt from cockroachdb/cockroach:latest and executes the start-single-node --insecure mode to create a running test-instance of CRDB for the Github workflows.

Well. Here is the path I chose.