proxyjenkins/docker-compose.yml
2024-05-28 20:50:38 +03:00

13 lines
448 B
YAML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

services:
jenkins:
image: jenkins/jenkins:2.459 #Тут желательно указывать (image: jenkins/jenkins:latest), но так как у меня ставится старая версия я поставил принудительно новую.
container_name: jenkins
volumes:
- ./jenkins-data:/var/jenkins_home
ports:
- "8080:8080"
- "50000:50000"
restart: always
volumes:
jenkins-data: