# Day 9 - GitLabs - 90daysofDevOps

Gitlabs: is a web-based Git repository that **provides free open and private repositories, issue-following capabilities, and wikis**. It is a complete DevOps platform that enables professionals to perform all the tasks in a project—from project planning and source code management to monitoring and security.

We have created a basic CI Pipeline in Gitlabs.

```plaintext
stages:
    - build
    - test
    - push
    - deploy

build_job: 
    stage: build
    script:
        - echo "This is the build stage"

test_job: 
    stage: test
    script:
        - echo "This is the test stage"

push_job: 
    stage: push
    script:
        - echo "This is the push stage"

deploy_job: 
    stage: deploy
    script:
        - echo "This is the deploy stage"
    
```

Below is the Build Pipeline snip :

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1723668393429/b739994e-d304-4240-88a1-c556d2bd3ced.png align="center")

### **Charting Our Docker Adventure 🗺️**

Today's Docker tasks were like unlocking the hidden treasures of containerization. Sail through the sea of containers, and let's share our Docker stories on this #DevOpsJourney! ⚓🌐

Join me tomorrow for another thrilling DevOps challenge. Until then, keep Dockerizing! 🐳🚀

Happy Containerizing! 🌟👨‍💻
