CESI: Métiers DevOps, base slides

This commit is contained in:
2018-06-27 16:09:39 +02:00
committed by Benjamin Bohard
parent b7f40beda0
commit f5356e2e41
6 changed files with 374 additions and 0 deletions

View 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/)

View File

@ -0,0 +1 @@
/.data

View 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