diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b25c15b --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*~ diff --git a/artificer-wildfly/Dockerfile b/artificer-wildfly/Dockerfile new file mode 100755 index 0000000..664bd61 --- /dev/null +++ b/artificer-wildfly/Dockerfile @@ -0,0 +1,16 @@ +FROM jboss/wildfly:8.2.0.Final + +MAINTAINER Brett Meyer + +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"] diff --git a/artificer-wildfly/README.md b/artificer-wildfly/README.md new file mode 100644 index 0000000..7ad356e --- /dev/null +++ b/artificer-wildfly/README.md @@ -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 .