Closed
Bug 1417592
Opened 8 years ago
Closed 8 years ago
push_to_dockerhub Circle workflow failing
Categories
(Socorro :: Symbols, task)
Socorro
Symbols
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: peterbe, Assigned: peterbe)
Details
Attachments
(1 file)
See https://circleci.com/gh/mozilla-services/tecken/1772
----------------
#!/bin/bash -eo pipefail
# set DOCKER_DEPLOY=true in Circle UI to push to Dockerhub
DOCKER_DEPLOY="${DOCKER_DEPLOY:-false}"
if [ "${CIRCLE_BRANCH}" == "master" ]; then
bin/ci/deploy-dockerhub.sh latest
fi
if [ -n "${CIRCLE_TAG}" ]; then
bin/ci/deploy-dockerhub.sh "$CIRCLE_TAG"
fi
bin/ci/deploy-dockerhub.sh: line 14: docker: command not found
2 / 3
bin/ci/deploy-dockerhub.sh: line 14: docker: command not found
3 / 3
bin/ci/deploy-dockerhub.sh: line 14: docker: command not found
Exited with code 1
-----------------
Comment 1•8 years ago
|
||
Comment 2•8 years ago
|
||
Commit pushed to master at https://github.com/mozilla-services/tecken
https://github.com/mozilla-services/tecken/commit/a1321da73edcdda7de3d5063cba23aaa897d1792
fixes bug 1417592 - push_to_dockerhub Circle workflow failing (#566)
Updated•8 years ago
|
Status: NEW → RESOLVED
Closed: 8 years ago
Resolution: --- → FIXED
Comment 3•8 years ago
|
||
Commit pushed to master at https://github.com/mozilla-services/tecken
https://github.com/mozilla-services/tecken/commit/2a0bd2f05edb843f82caf48c4ce2d29fb358fcd5
bug 1417592 - setup remote docker in circle push_to_dockerhub
Comment 4•8 years ago
|
||
Commit pushed to master at https://github.com/mozilla-services/tecken
https://github.com/mozilla-services/tecken/commit/3fbf53701f593793d3aa4fa8f1c2ba96f83e57e6
bug 1417592 - build_test_and_deploy workflow
Comment 5•8 years ago
|
||
Commit pushed to master at https://github.com/mozilla-services/tecken
https://github.com/mozilla-services/tecken/commit/0e1319cf552b1462688b963a635dbcc5aac7c68a
bug 1417592 - build_test_and_deploy workflow
You need to log in
before you can comment on or make changes to this bug.
Description
•