This image is intended for use in the Bitbucket pipeline as a build image.
It is based on the official Docker image and extends it with additional packages:
A user is also set for MySQL. If you create a volume for the mysql container in the Bitbucket work directory, you can use this user so that the mysql container does not try to change the user of the directory.
It and all additionally installed programs will be updated at the latest once the base image is updated.
Here is an example for use in the bitbucket-pipelines.yml:
pipelines:
default:
- step:
image: basilicom/docker-dind:latest
name: Usage Example
services:
- docker
script:
# the official docker dind is not adapted for the bitbucket pipeline,
# so the buildkit should be disabled
- export DOCKER_BUILDKIT=0
- docker -v
- docker-compose version
- make -v | head -n 1
Content type
Image
Digest
sha256:41285eb0d…
Size
129.8 MB
Last updated
about 18 hours ago
docker pull basilicom/docker-dind