Add 'docker_portainer_stacks/jenkins.yml'

This commit is contained in:
sthope 2021-09-13 23:20:12 +02:00
parent 75061e740c
commit f577dd7177

View File

@ -0,0 +1,17 @@
---
version: "3.8"
services:
jenkins:
image: jenkins/jenkins:latest
container_name: jenkins
hostname: jenkins
network_mode: bridge
ports:
- 50000:50000
- 8080:8080
restart: unless-stopped
volumes:
- jenkins_data:/var/jenkins_home
volumes:
jenkins_data: