Sign inSign up

mlaxwong/docker

By mlaxwong

Updated about 3 years ago

Image
0

164

mlaxwong/docker repository overview

FROM docker:20.10.16-dind

ENV DOCKER_TLS_CERTDIR ""
stages:          # List of stages for jobs, and their order of execution
  - build
  - deploy

build-job:       # This job runs in the build stage, which runs first.
  stage: build
  image: docker:dind

  services:
    - docker:20.10.16-dind

  variables:
    DOCKER_TLS_CERTDIR: ""

  before_script:
    - docker info
  
  script:
    - docker login -u $CI_REGISTRY_USER -p $CI_JOB_TOKEN $CI_REGISTRY
    - docker build . -t temp 

Tag summary

Content type

Image

Digest

sha256:188ad2a88

Size

88.9 MB

Last updated

about 3 years ago

docker pull mlaxwong/docker