Skip to content

Instantly share code, notes, and snippets.

View KnifeHand's full-sized avatar
🏠
Working from home

Matt Hurt KnifeHand

🏠
Working from home
View GitHub Profile
@KnifeHand
KnifeHand / plugins.txt
Created October 19, 2022 16:37
Jenkins Plugins
ace-editor:1.1
active-directory:2.26
ansicolor:1.0.2
ant:481.v7b_09e538fcca
antisamy-markup-formatter:2.7
apache-httpcomponents-client-4-api:4.5.13-138.v4e7d9a_7b_a_e61
aqua-security-scanner:3.2.1
artifactory:3.17.1
atlassian-bitbucket-server-integration:3.3.1
authentication-tokens:1.4
Running from: /usr/share/jenkins/jenkins.war
webroot: EnvVars.masterEnvVars.get("JENKINS_HOME")
2022-10-04 19:25:38.867+0000 [id=1] INFO winstone.Logger#logInternal: Beginning extraction from war file
2022-10-04 19:25:38.941+0000 [id=1] WARNING o.e.j.s.handler.ContextHandler#setContextPath: Empty contextPath
2022-10-04 19:25:39.016+0000 [id=1] INFO org.eclipse.jetty.server.Server#doStart: jetty-10.0.11; built: 2022-06-21T21:12:44.640Z; git: d988aa016e0bb2de6fba84c1659049c72eae3e32; jvm 11.0.16.1+1-LTS
2022-10-04 19:25:39.543+0000 [id=1] INFO o.e.j.w.StandardDescriptorProcessor#visitServlet: NO JSP Support for /, did not find org.eclipse.jetty.jsp.JettyJspServlet
2022-10-04 19:25:39.628+0000 [id=1] INFO o.e.j.s.s.DefaultSessionIdManager#doStart: Session workerName=node0
2022-10-04 19:25:40.275+0000 [id=1] INFO hudson.WebAppMain#contextInitialized: Jenkins home directory: /var/jenkins_home found at: EnvVars.masterEnvVars.get("JENKINS_HOME")
2022-10-04 19:25:40.485+0000 [id=1] INFO o.e.j.s.handler.ContextHandler
@KnifeHand
KnifeHand / Dockerfile
Last active May 1, 2021 05:56
Rust Web App Docker build error
# Cargo build stage
FROM rust:latest AS cargo-build
WORKDIR /usr/src/oasis
RUN apt-get install -y build-essential
RUN apt-get install openssl libssl-dev -y && apt-get install clang llvm-dev libclang-dev -y
COPY Cargo.toml Cargo.lock ./
#COPY data ./data
COPY migrations ./migrations