How to use Cockroach as Github Action's Container Service? #83749
|
I wondering how to include services:
cockroach:
image: cockroachdb/cockroach:latest
options: --entrypoint "/cockroach/cockroach.sh start-single-node --insecure"
ports:
- 26257:26257 |
Answered by
shawntoffel
Dec 31, 2024
Replies: 3 comments
|
Resolved my issue by usage of |
0 replies
|
I have the same issue but cannot use Here is what I tried so far: salsita/node-pg-migrate#968 |
0 replies
|
This is now possible in >=24.2 via the services:
cockroach:
image: cockroachdb/cockroach
env:
COCKROACH_ARGS: "start-single-node --insecure"
options: >-
--health-cmd "curl -f http://localhost:8080/health?ready=1" |
0 replies
Answer selected by
keinsell
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is now possible in >=24.2 via the
COCKROACH_ARGSenvironment variable.