Skip to content
Snippets Groups Projects
Commit be10faa7 authored by Ahmad Ghulam Ilham's avatar Ahmad Ghulam Ilham
Browse files

feat: ci cd pipeline

parent d2121828
No related merge requests found
Pipeline #66386 canceled with stages
stages:
- build
- deploy
variables:
DOCKER_IMAGE: "if4054-final-project"
build:
stage: build
script:
- docker build -t $DOCKER_IMAGE .
- docker-compose up -d
only:
- main
deploy:
stage: deploy
script:
- docker-compose exec webserver airflow dags trigger telco_customer_churn_data_pipeline
only:
- main
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment