Skip to content

Instantly share code, notes, and snippets.

@jmoz
Created March 1, 2023 19:13
Show Gist options
  • Save jmoz/17c1060cc2344e2662ea159a1cfd825c to your computer and use it in GitHub Desktop.
Save jmoz/17c1060cc2344e2662ea159a1cfd825c to your computer and use it in GitHub Desktop.

Revisions

  1. jmoz created this gist Mar 1, 2023.
    29 changes: 29 additions & 0 deletions gistfile1.txt
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,29 @@
    image: docker/compose:latest

    services:
    - docker:dind

    stages:
    - build
    - test
    - deploy

    before_script:
    - docker info
    - docker-compose --version

    build-job:
    stage: build
    script:
    - docker-compose build

    unittest-job:
    stage: test
    script:
    - docker-compose run shogunbt python -m unittest

    deploy-job:
    stage: deploy
    environment: production
    script:
    - echo "Deploying application..."