Jenkins on docker

This commit is contained in:
2026-02-03 17:05:49 +00:00
parent 389c17e8d7
commit fcee81d3b4

16
docker-compose.yml Normal file
View File

@@ -0,0 +1,16 @@
services:
jenkins:
container_name: my_jenkins_01
image: jenkins/jenkins:latest
environment:
TZ: "Europe/Bucharest"
ports:
- "60199:8080"
- "5000:5000"
volumes:
- "jenkins:/var/jenkins_home"
- "/var/run/docker.sock:/var/run/docker.sock"
restart: unless-stopped
volumes:
jenkins: