CESI: Métiers DevOps, base slides
This commit is contained in:
Binary file not shown.
8
cesi/metiers_devops/ressources/bibliographie.md
Normal file
8
cesi/metiers_devops/ressources/bibliographie.md
Normal file
@ -0,0 +1,8 @@
|
||||
# Bibliographie
|
||||
|
||||
- [DevOps Best Practices](https://gist.github.com/jpswade/4135841363e72ece8086146bd7bb5d91)
|
||||
- [The Journey to DevOps - Notes from The Project Phoenix](https://wade.be/development/2017/09/13/journey-to-dev-ops-phoenix-project.html)
|
||||
- [Top 10 DevOps Values](https://fr.slideshare.net/arunmurughan/top-10-devops-values)
|
||||
- [What is DevOps ?](https://theagileadmin.com/what-is-devops/)
|
||||
- [The death of microservices madness in 2018](https://www.dwmkerr.com/the-death-of-microservice-madness-in-2018/)
|
||||
- [The most demanded DevOps skills stats, DIY approach.](http://devopsystuff.com/2018/02/18/the-most-demanded-devops-skills-stats-diy-approach/)
|
1
cesi/metiers_devops/ressources/ci-env/.gitignore
vendored
Normal file
1
cesi/metiers_devops/ressources/ci-env/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
/.data
|
20
cesi/metiers_devops/ressources/ci-env/docker-compose.yml
Normal file
20
cesi/metiers_devops/ressources/ci-env/docker-compose.yml
Normal file
@ -0,0 +1,20 @@
|
||||
version: '2.2'
|
||||
services:
|
||||
gitlab:
|
||||
image: gitlab/gitlab-ce:latest
|
||||
restart: always
|
||||
ports:
|
||||
- "8443:443"
|
||||
- "8080:80"
|
||||
- "2222:22"
|
||||
volumes:
|
||||
- ./.data/gitlab/config:/etc/gitlab
|
||||
- ./.data/gitlab/log:/var/log/gitlab
|
||||
- ./.data/gitlab/data:/var/opt/gitlab
|
||||
gitlab-runner:
|
||||
image: gitlab/gitlab-runner
|
||||
volumes:
|
||||
- ./.data/gitlab-runner/config:/etc/gitlab
|
||||
- /var/run/docker.sock:/var/run/docker.sock
|
||||
depends_on:
|
||||
- gitlab
|
Reference in New Issue
Block a user