0.4.0.0
Changes
First real release. For those using myriad before this, the repository for images was changed. Run this script to update existing ones:
#!/bin/sh
OLD="1computer1/comp_iler"
NEW="1computer1/myriad"
for image in $(docker images -a --format "{{.Repository}}:{{.Tag}}" | grep $OLD)
do
TAG=$(echo "$image" | cut -d ":" -f 2)
docker image tag "$OLD:$TAG" "$NEW:$TAG"
docker rmi "$OLD:$TAG"
done