Skip to content
This repository has been archived by the owner on Jan 25, 2021. It is now read-only.

Commit

Permalink
Merge pull request #2 from brmeyer/master
Browse files Browse the repository at this point in the history
jboss/artificer-wildfly:1.0.0.Beta1
  • Loading branch information
goldmann committed Jun 24, 2015
2 parents d07996e + fd2126c commit 00cbe18
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*~
16 changes: 16 additions & 0 deletions artificer-wildfly/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
FROM jboss/wildfly:8.2.0.Final

MAINTAINER Brett Meyer <[email protected]>

ENV ARTIFICER_VERSION 1.0.0.Beta1

RUN cd $HOME \
&& curl http://downloads.jboss.org/artificer/artificer-$ARTIFICER_VERSION.zip | bsdtar -xvf- \
&& cd artificer-$ARTIFICER_VERSION \
&& chmod 777 install.sh \
&& ./install.sh -Ds-ramp-distro.choices.platform=1 -Ds-ramp-distro.choices.platform.jboss-wildfly-8.path=$HOME/wildfly -Dejb-jms.password=artificer1! \
&& cp artificer-realm.json $HOME/wildfly \
&& cd .. \
&& rm -rf artificer*

CMD ["/opt/jboss/wildfly/bin/standalone.sh", "-b", "0.0.0.0", "-c", "standalone-full.xml", "-Dkeycloak.import=wildfly/artificer-realm.json", "-Dhibernate.hbm2ddl.auto=update"]
22 changes: 22 additions & 0 deletions artificer-wildfly/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
Artificer: Wildfly
======================

All individuals, teams, and organizations tend to have a tangled mess of "stuff". That bucket can include bits of information, logical metadata, and physical files. Those "artifacts" are almost never isolated in nature. They're all connected and inter-dependent, but the relationships can be difficult to understand.

In the software development world, this is an especially important problem to solve. The development process often spews out a huge amount of artifacts, needed for future analysis and actions. Without the ability to analyze how the information, artifacts, and content within the artifacts are connected, development processes become difficult, at best, or nearly impossible, at worst. Further, it's not enough to simply know how the bits are related. How do you correlate the artifacts/metadata with, for example, service endpoints, the responsible teams/individuals, and change histories?

In steps Artificer. Artificer is a software artifact, logical metadata, and information repository. It consists of a common data model, multiple interfaces, useful tools, and extensibility. In less words? It's a powerful platform that untangles everything.

Artificer is 100% open source -- contributions are welcome!

Visit [artificer.jboss.org](http://artificer.jboss.org) to learn more.

## Usage

To start Artificer

docker run -it -p 8080:8080 jboss/artificer-wildfly[:tag]

## Building the image

docker build -t jboss/artificer-wildfly[:tag] --rm .

0 comments on commit 00cbe18

Please sign in to comment.