Dockerized nodechef-cli for usage in CI and/or CLI
1.9K
This image contains the NodeChef-CLI for deploying applications to NodeChef.
I initially built this image in order to use it in my Gitlab-CI pipeline:
nodechef:dev:
stage: publish
image: hermsi/nodechef-cli
environment:
name: development
script: >
nc deploy
-i "${APPLICATION}-dev"
-auth "${NODECHEF_DEPLOY_TOKEN}"
-e "${NODECHEF_ENV_FILE}"
-bp go
--updateafterping
only:
- tags
But it's also possible to use this image locally, if you don't want to install node and the nodechef-cli itself:
$ docker run --rm -v $(pwd):/app -w /app --entrypoint nc hermsi/nodechef-cli deploy -i yourEnv -auth yourDeployToken --updateafterping
Content type
Image
Digest
Size
350.4 MB
Last updated
over 5 years ago
docker pull hermsi/nodechef-cli:2-node13