Files
it_school/Jenkins/docker-compose.yaml
Ionel Andrei Cataon 546fc277a4 s
2026-02-19 19:19:14 +02:00

18 lines
351 B
YAML

services:
jenkins:
container_name: my_jenkins_01
build:
context: .
dockerfile: dockerfile.jenkins
ports:
- "60199:8080"
- "5000:5000"
volumes:
- "jenkins:/var/jenkins_home"
- "/var/run/docker.sock:/var/run/docker.sock"
group_add:
- "999"
restart: unless-stopped
volumes:
jenkins: