Files
it_school/Jenkins/docker-compose.yaml
Ionel Andrei Cataon f082bec56b
Some checks failed
It_School_001/pipeline/head Something is wrong with the build of this commit
update
2026-02-05 10:40:53 +02:00

16 lines
336 B
YAML

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: