Skip to content
This repository has been archived by the owner on Aug 14, 2023. It is now read-only.

Commit

Permalink
Merge pull request #283 from kraeml/apt-pinning-armv6l
Browse files Browse the repository at this point in the history
Apt pinning for armv6l docker bug
  • Loading branch information
StefanScherer authored Mar 31, 2019
2 parents cf48afa + a3cb66c commit 3a06794
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions builder/chroot-script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,11 @@ pip install "docker-compose==${DOCKER_COMPOSE_VERSION}"
# install bash completion for Docker Compose
curl -sSL "https://raw.githubusercontent.com/docker/compose/${DOCKER_COMPOSE_VERSION}/contrib/completion/bash/docker-compose" -o /etc/bash_completion.d/docker-compose

# set up Docker CE pinning for armv6l bug in docker
# See https://github.com/moby/moby/issues/38175

echo -e 'Package: docker-ce\nPin: version 18.06.*\nPin-Priority: 1000' | tee /etc/apt/preferences.d/docker-ce

# install docker-ce (w/ install-recommends)
apt-get install -y --force-yes \
--no-install-recommends \
Expand Down

0 comments on commit 3a06794

Please sign in to comment.