Hi,
For those of you using the CircleCI Remote Docker feature (setup_remote_docker
), we are pleased to share that Docker v19.03.12 is now available.
Example use:
version: 2.1
workflows:
main:
jobs:
- build
jobs:
build:
docker:
- image: cimg/base:stable
steps:
- checkout
- setup_remote_docker:
version: 19.03.12
- run:
name: "Do all the things!"
command: |
docker build -t my-org/my-image:my-tag .
docker push my-org/my-image
You can find all available versions in CircleCI Docs.