Skip to content

Instantly share code, notes, and snippets.

View trambopoline's full-sized avatar

Devin Dodson trambopoline

View GitHub Profile
@michaelneu
michaelneu / Makefile
Last active March 23, 2019 00:02
Docker configuration to run wildfly, mysql, maven and phpmyadmin in containers
all: war deploy
deploy:
cp project/target/*.war deployments/
clean:
rm deployments/*.war
docker run --rm -v `pwd`/project:/app -v m2:/root/.m2 -w /app maven:alpine mvn clean
war: