stages: - install - deploy install_job: stage: install script: - docker-compose build only: - triggers - manual when: manual deploy_job: stage: deploy script: - docker-compose up -d only: - triggers - manual when: manual