aboutsummaryrefslogtreecommitdiffstats
path: root/docker-compose.yml
diff options
context:
space:
mode:
authorGravatar Andrew D. France 2025-07-22 20:49:31 -0500
committerGravatar Andrew D. France 2025-07-22 20:49:31 -0500
commit7c4b465d8c773b2e6282e78553c7c49e85e091d5 (patch)
tree3f2b037b72ddb6fd210073bfe52fef01f663b521 /docker-compose.yml
parentAdded compat53 to init block: added .gitmodules init to install.sh (diff)
Added Jenkins files for local CI testing
Diffstat (limited to 'docker-compose.yml')
-rw-r--r--docker-compose.yml17
1 files changed, 17 insertions, 0 deletions
diff --git a/docker-compose.yml b/docker-compose.yml
new file mode 100644
index 0000000..77dfb90
--- /dev/null
+++ b/docker-compose.yml
@@ -0,0 +1,17 @@
+# docker-compose.yml
+services:
+ jenkins:
+ build:
+ context: .
+ dockerfile: Dockerfile.jenkins
+ args:
+ # Pass the host's docker group ID to the build
+ DOCKER_GID: ${DOCKER_GID}
+ user: "${UID}:${GID}" # Run the container as the current host user
+ ports:
+ - "8080:8080"
+ - "50000:50000"
+ container_name: jenkins
+ volumes:
+ - ./jenkins_home:/var/jenkins_home
+ - /var/run/docker.sock:/var/run/docker.sock