This repository has been archived by the owner on Jan 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from brmeyer/master
jboss/artificer-wildfly:1.0.0.Beta1
- Loading branch information
Showing
3 changed files
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
*~ |
This file contains 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
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"] |
This file contains 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
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 . |