Added jenkins and cronicle for automated cronjobs

updated gitea to direct mounts
This commit is contained in:
2025-09-01 20:30:21 +02:00
parent 743ce4c4f3
commit a845774982
5 changed files with 57 additions and 20 deletions
+14
View File
@@ -0,0 +1,14 @@
services:
jenkins:
container_name: jenkins
restart: unless-stopped
image: jenkins/jenkins:lts
user: root
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- /usr/bin/docker:/usr/bin/docker
- /srv/dev-disk-by-uuid-17e88007-4d0c-45e0-8757-cacfcc458630/docker_config/jenkins/:/var/jenkins_home
- /srv/dev-disk-by-uuid-7a33692e-6462-435b-9c97-029589baeeab/jenkins_workspace:/var/jenkins_home/workspace
ports:
- "8080:8080"
- "50000:50000"