Files
it_school/Jenkins/docker-compose.yaml
Ionel Andrei Cataon 7960479684 update
2026-02-12 14:50:33 +02:00

18 lines
367 B
YAML

services:
jenkins:
container_name: my_jenkins_01
build:
context: .
dockerfile: dockerfile.jenkins
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: