This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM cwoodcock/activiti | |
ENV REST_LIB_DIR /opt/tomcat/webapps/activiti-rest/WEB-INF/lib | |
ENV EXPLORER_LIB_DIR /opt/tomcat/webapps/activiti-explorer/WEB-INF/lib | |
# In this example (from a Maven project) all the project's dependencies | |
# were copied to target/lib by the maven-dependency-plugin | |
ADD target/lib /lib/ | |
# Also add the artifact that has our customisations |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# BASH snippet for use in ~/.bash_profile | |
# | |
# Not sure who the original author was, but it wasn't me. | |
# | |
# Putting this here so I remember where it is. | |
# | |
# Reset | |
Color_Off="\[\033[0m\]" # Text Reset |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Create a working and swap space on a disk | |
WORKING_SIZE=5G | |
SWAP_SIZE=5G | |
DISK=/dev/xvdf | |
MOUNT_POINT=/mnt/working | |
# Create the mount point | |
[[ ! -d $MOUNT_POINT ]] && mkdir $MOUNT_POINT |