Skip to content

Instantly share code, notes, and snippets.

View mikemarmar's full-sized avatar

Mike Marmar mikemarmar

View GitHub Profile
@mikemarmar
mikemarmar / hippo_repository.xml
Created February 29, 2016 14:15
Hippo repository configuration for Docker
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE Repository
PUBLIC "-//The Apache Software Foundation//DTD Jackrabbit 2.6//EN"
"http://jackrabbit.apache.org/dtd/repository-2.6.dtd">
<Repository>
<DataSources>
@mikemarmar
mikemarmar / hippo_context.xml
Created February 29, 2016 14:16
Hippo servlet context configuration for Docker
<?xml version='1.0' encoding='utf-8'?>
<Context useHttpOnly="true">
<!-- Disable session persistence across Tomcat restarts -->
<Manager pathname="" />
<Parameter name="repository-address" value="rmi://127.0.0.1:1099/hipporepository" override="false"/>
<Parameter name="repository-directory" value="/usr/local/tomcat/repository" override="false"/>
<Parameter name="start-remote-server" value="false" override="false"/>
@mikemarmar
mikemarmar / hippo_assembly.xml
Created February 29, 2016 14:16
Hippo maven assembly descriptor for Docker
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd">
<id>distribution</id>
<formats>
<format>tar.gz</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<files>