forked from gchq/gaffer-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile.wildfly
44 lines (37 loc) · 1.59 KB
/
Dockerfile.wildfly
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
##########################################################
# Copyright 2016 Crown Copyright, cybermaggedon
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
##########################################################
FROM fedora:32
RUN dnf update -y && dnf install -y unzip && \
dnf install -y java-1.8.0-openjdk maven && dnf clean all
WORKDIR /usr/local
COPY wildfly.zip /usr/local/
RUN unzip /usr/local/wildfly.zip
RUN ln -s wildfly-11.0.0.Final wildfly
WORKDIR /usr/local/wildfly
COPY product/*.war standalone/deployments/
COPY resources/standalone.xml standalone/configuration/
COPY resources/schema schema
COPY resources/store.properties store.properties
CMD ( \
echo "accumulo.table=${ACCUMULO_TABLE:-gaffer}"; \
echo "accumulo.instance=${ACCUMULO_INSTANCE:-accumulo}"; \
echo "accumulo.user=${ACCUMULO_USER:-root}"; \
echo "accumulo.password=${ACCUMULO_SECRET:-accumulo}"; \
echo "accumulo.zookeepers=${ZOOKEEPERS:-zookeeper:2181}" \
) >> store.properties; \
bin/standalone.sh -Dgaffer.schemas=/usr/local/wildfly/schema \
-Dgaffer.storeProperties=/usr/local/wildfly/store.properties
EXPOSE 8080