To create a new versioner image, after there's been a deployment of one or more microservices in aws-prod (eg runner, saver, web, languages-start-points, etc), simply:
- run the copy_prod_images_to_dockerhub.yml workflow
make all_filesgit add .git commit -m "[RELEASE=0.1.424] Patch level updates"(assuming 0.1.423 was the current latest)git push
The entrypoint for a cyberdojo/versioner docker image simply prints a self-consistent, working set of
image-name, commit-sha, image-tag, image-digest, and port-number, environment variables
for public images in dockerhub. For example:
$ docker run --rm cyberdojo/versioner:latest ... CYBER_DOJO_RUNNER_IMAGE=cyberdojo/runner CYBER_DOJO_RUNNER_TAG=c31ef46 CYBER_DOJO_RUNNER_SHA=c31ef46df438c57268be5356e2717eaa822e8334 CYBER_DOJO_RUNNER_DIGEST=42fb72727fd50a0c1127be2ef036f2ee0a6aa9be9df5838055e65e55a37cd7ea CYBER_DOJO_RUNNER_PORT=4597 ... CYBER_DOJO_WEB_IMAGE=cyberdojo/web CYBER_DOJO_WEB_TAG=2498759 CYBER_DOJO_WEB_SHA=2498759f03851b85e85de2611a3a3742d54f3a6e CYBER_DOJO_WEB_DIGEST=dbc41524d532e74b01f4da90ff15b737ac0e33132bf7338b4e20bb027e79d456 CYBER_DOJO_WEB_PORT=3000 ...
The main cyber-dojo bash script uses these environment variables to:
- control the image identity and port number of all cyber-dojo microservice containers.
- control the START_POINTS_BASE identity when running
cyber-dojo start-point create ...
For example, suppose cyberdojo/versioner:latest is a tag for cyberdojo/versioner:0.1.409
(which we can see a fragment of above), and we bring up a cyber-dojo server:
$ cyber-dojo up Using version=0.1.409 (public) ... Using runner=cyberdojo/runner:c31ef46 Using web=cyberdojo/web:2498759 ...
- Note: the runner service identity is
${CYBER_DOJO_RUNNER_IMAGE}:${CYBER_DOJO_RUNNER_TAG} - Note: the web service identity is
${CYBER_DOJO_WEB_IMAGE}:${CYBER_DOJO_WEB_TAG} - Note: The TAG is currently always the first seven chars of the SHA
Integration tests can export these environment variables, and use them
in a docker-compose.yml file to bring up dependent services.
For example:
#!/usr/bin/env bash
set -Eeu
echo_env_vars() { docker run --rm cyberdojo/versioner:latest; }
export $(echo_env_vars)
docker compose --file docker-compose.yml up --detach
# ...wait for all services to be ready
# ...run your tests which depend on, eg, runner...
## docker-compose.yml
services:
my_app:
depends_on:
- runner
...
runner:
image: ${CYBER_DOJO_RUNNER_IMAGE}:${CYBER_DOJO_RUNNER_TAG}
...If you are working on cyber-dojo, from source, and you want to run a cyber-dojo server which uses your locally built image(s) one option is to explicitly replace specific environment variables. For example:
#!/usr/bin/env bash
set -Eeu
echo_env_vars()
{
# Echoes all current service env-vars. See above.
docker --log-level=ERROR run --rm cyberdojo/versioner:latest
# Now override specific env-vars for local work-in-progress
echo CYBER_DOJO_RUNNER_SHA=c93a9c650a8c4e7cc83545ce3f9108c2c76746d8
echo CYBER_DOJO_RUNNER_TAG=c93a9c6
#
echo CYBER_DOJO_SAVER_SHA=13b14d947fa9e873820d3e4a1e2f593735e9410a
echo CYBER_DOJO_SAVER_TAG=13b14d9
# ...
}
# Now export all echoed env-vars
export $(echo_env_vars)
...Alternatively you can build a cyberdojo/versioner:latest fake image
which prints SHA/TAG values for your locally built image(s) (eg for runner).
You will need to hand-edit the git commit SHA values into /bin/build_fake_image.sh
and then run:
$ make build_fake_imageAfter use, be sure to replace it with:
$ docker pull --platform=linux/amd64 cyberdojo/versioner