Skip to content

wemake-services/wemake-dind

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

41 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

wemake-dind

wemake.services test Dockerhub image size

Our docker-in-docker image with Python.

Usage

We use this image in our GitLab-based builds. Like:

It really helps us to speed up the build and fix possible errors in one place.

Example usage:

build:
  image: wemakeservices/wemake-dind:latest
  interruptible: true
  services:
    - docker:dind
  variables:
    DOCKER_DRIVER: overlay2
  before_script:
    - echo 'Done!'

Tags

We use tags, however in this particular case we enforce using :latest. It should always just work.

Our tag policy is:

  • First two version numbers are identical to the docker version tag, so FROM docker:20.10 will always produce wemake-dind:20.10.x
  • The last version number is a patch release, it is our custom one and is not related to docker tags at all