Skip to content

oyvindym/maven-infrastructure

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Maven Infrastructure using Docker

A collection of tools and recepies to make your Maven world shine :)

The basics: Some good small Java JDK Docker Baseimages

Java 9 JDK

Java 8 JDK

Tools

Nexus

Jenkins

SonarCube

Webproxy

Not using docker yet.

sudo aptitude install apache and use something like the following for webproxy config:

NameVirtualHost *:80
<VirtualHost *:80>
        ServerName jenkins.company.no
        ProxyRequests     Off
        ProxyPreserveHost ON
        ProxyPass / http://localhost:8080/ nocanon
        ProxyPassReverse / http://localhost:8080/
        ProxyPassReverse  /  http://jenkins.company.no/i
        AllowEncodedSlashes NoDecode
</VirtualHost>
<VirtualHost *:80>
        ServerName mvnrepo.company.no
        ProxyPreserveHost ON
        ProxyPass / http://localhost:8081/
        ProxyPassReverse / http://localhost:8081/
</VirtualHost>

Maven Parent POM

https://github.com/Cantara/maven-infrastructure/tree/master/parentpom

Version Control

https://github.com/ or set up your own git server.

Aggregated log-server

An initial setup for the greylog2 log-server is provided

About

Maven Infrastructure using Docker

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 94.7%
  • Groovy 5.3%