stages:
  - restart

Build:
  stage: build
  tags:
    - FairCoin.Co
  only:
    refs:
      - master
    variables:
      - $CMD =~ /build/
  script:
    - docker-compose build

Restart:
  stage: restart
  tags:
    - FairCoin.Co
  only:
    refs:
      - master
    variables:
      - $CMD =~ /build|restart/
  script:
    - docker-compose down
    - docker-compose up