Skip to content
Snippets Groups Projects
.gitlab-ci.yml 252 B
Newer Older
Tamas Gal's avatar
Tamas Gal committed
image: docker:stable
services:
    - docker:dind

variables:
  DOCKER_HOST: tcp://docker:2375
  DOCKER_DRIVER: overlay2


before_script:
    - apk --no-cache add python


build:
    script:
        - python publish_images.py
    tags:
Tamas Gal's avatar
Tamas Gal committed
        - docker