concourse: concourse-worker - error - volume graph is disabled
CMD:
fly -t web watch --job hello-world/hello-world targeting http://IP:PORT
Response:
initializing
volume graph is disabled
errored
Cant find this issue anywhere…
Dockerfile
FROM ubuntu:14.04
ENV CONCOURSE_DISTURL https://github.com/concourse/bin/releases/download
ENV CONCOURSE_VERSION 1.2.0-rc.9
RUN apt-get update &&
apt-get install -y iptables ca-certificates aufs-tools wget &&
apt-get clean &&
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* &&
mkdir /opt/concourse &&
mkdir /opt/concourse/bin &&
cd /opt/concourse/bin/ &&
wget -q https://github.com/vito/bin/releases/download/v1461709990/concourse_linux_amd64 &&
apt-get remove wget -y && apt-get autoremove -y &&
apt-get clean
mkdir /opt/concourse/conf &&
chmod +x /opt/concourse/bin/*
WORKDIR /opt/concourse
COPY bin/concourse-worker.sh /opt/concourse/bin/
COPY sample/ ./
CMD /opt/concourse/bin/concourse-worker.sh
concourse-worker.sh
!/bin/sh
set -e
ip=$(hostname --ip-address)
CONCOURSE_HOME=/opt/concourse
PATH=$PATH:$CONCOURSE_HOME/bin
concourse_linux_amd64 worker
–work-dir $CONCOURSE_HOME/worker
–tsa-host 172.20.232.190
–tsa-port 10703
–tsa-public-key host_key.pub
–tsa-worker-private-key worker_key
About this issue
- Original URL
- State: closed
- Created 8 years ago
- Comments: 17 (4 by maintainers)
Commits related to this issue
- Revert "Try to remove an useless docker-pull in the beginning of ci/tasks/compose.yml" "A task did not specify an image at all." causes `volume graph is disabled` errors. see https://github.com/conc... — committed to mumoshu/concourse-aws by mumoshu 8 years ago
- Fix errors See: https://github.com/concourse/concourse/issues/402 — committed to takuan-osho/sample-repository by takuan-osho 8 years ago
- Fix errors See: https://github.com/concourse/concourse/issues/402 — committed to takuan-osho/sample-repository by takuan-osho 8 years ago
- Fix errors of `volume graph is disabled`. See: https://github.com/concourse/concourse/issues/402#issuecomment-223619301 — committed to takuan-osho/concourse-sample by takuan-osho 8 years ago
- bump a *bunch* of dependencies would not be surprised at all if this breaks things, but it's easiest to see by trying bump tail pat cli retryhttp jwt-go go-bindata-assetfs color tcpkeepalive protobu... — committed to concourse/concourse by vito 8 years ago
- Use image_resource: instead of image: Concourse standalone does not support the deprecated image: syntax. See https://github.com/concourse/concourse/issues/402 — committed to SUSE/bosh-openstack-cpi-release by manno 8 years ago
- Use image_resource: instead of image: Concourse standalone does not support the deprecated image: syntax. See https://github.com/concourse/concourse/issues/402 — committed to SUSE/bosh-openstack-cpi-release by manno 8 years ago
- Replace deprecated image configuration with image_resource https://github.com/concourse/concourse/issues/402#issuecomment-223619301 [#125480521] — committed to thechangelog/infrastructure by gerhard 8 years ago
@renier It is optional for platforms other than
linux.Closing this for now since it’s really just led into other issues which should be opened on their own.
The
volume graph is disablederror means one of two things:image: docker:///orimage: /foo/bar(less likely)imageat all.Tasks should be using
image_resourceinstead. This is an intentional change for the binary distribution;image_resourcewas introduced a while ago andimageisn’t worth supporting (it leads to disk usage leaks, bad UX, and portability headaches).@vito maybe the error message could be a bit more explicit instead of “volume graph is disabled” what about: