refactor: rename docker commands to ci

This commit is contained in:
Oliver Davies 2021-11-09 17:38:27 +00:00
parent 45ab483e66
commit 84536d0508
2 changed files with 15 additions and 15 deletions

26
run
View file

@ -13,6 +13,19 @@ fi
DC="${DC:-exec}"
function ci:build-images {
docker image build . \
--file tools/docker/images/Dockerfile \
--tag ${DOCKER_WEB_IMAGE_NAME}:${DOCKER_TAG} \
--tag ${DOCKER_WEB_IMAGE_NAME}:latest \
--target=production
}
function ci:push-images {
docker image push ${DOCKER_WEB_IMAGE_NAME}:${DOCKER_TAG}
docker image push ${DOCKER_WEB_IMAGE_NAME}:latest
}
function cmd {
# Run any command in the app container.
_dc app "${@}"
@ -27,19 +40,6 @@ function deploy {
cd tools/deployment && ansible-playbook deploy.yml
}
function docker:build-images {
docker image build . \
--file tools/docker/images/Dockerfile \
--tag ${DOCKER_WEB_IMAGE_NAME}:${DOCKER_TAG} \
--tag ${DOCKER_WEB_IMAGE_NAME}:latest \
--target=production
}
function docker:push-images {
docker image push ${DOCKER_WEB_IMAGE_NAME}:${DOCKER_TAG}
docker image push ${DOCKER_WEB_IMAGE_NAME}:latest
}
function help {
printf "%s <task> [args]\n\nTasks:\n" "${0}"