10.1.0-r8 release

Update image to version 10.1.0-r8
This commit is contained in:
Bitnami Bot
2017-05-17 21:51:02 +00:00
parent 01771e94f6
commit 856f2a7562
5 changed files with 37 additions and 27 deletions

View File

@@ -1,3 +0,0 @@
.git
tests/
README.md

View File

@@ -1,29 +1,32 @@
FROM bitnami/minideb-extras:jessie-r13
MAINTAINER Bitnami <containers@bitnami.com>
FROM bitnami/minideb-extras:jessie-r15
LABEL maintainer "Bitnami <containers@bitnami.com>"
ENV BITNAMI_IMAGE_VERSION=10.1.0-r7 \
BITNAMI_APP_NAME=wildfly \
PATH=/opt/bitnami/wildfly/bin:/opt/bitnami/java/bin:$PATH
# System packages required
RUN install_packages libc6 libxext6 libx11-6 libxcb1 libxau6 libxdmcp6 libglib2.0-0 libfreetype6 libfontconfig1 libstdc++6 libgcc1 zlib1g libselinux1 libpng12-0 libexpat1 libffi6 libpcre3 libxml2 liblzma5
# Additional modules required
RUN bitnami-pkg install java-1.8.0_111-1 --checksum f7705a3955f006eb59a6e4240a01d8273b17ba38428d30ffe7d10c9cc525d7be
# Install wildfly
# Install required system packages and dependencies
RUN install_packages libc6 libexpat1 libffi6 libfontconfig1 libfreetype6 libgcc1 libglib2.0-0 liblzma5 libpcre3 libpng12-0 libselinux1 libstdc++6 libx11-6 libxau6 libxcb1 libxdmcp6 libxext6 libxml2 zlib1g
RUN bitnami-pkg install java-1.8.0_121-0 --checksum 2743f753fd1ea88bf90352d95694f89ab0a0fb855cf0d1c7b2a6d92835f9ad27
RUN bitnami-pkg unpack wildfly-10.1.0-1 --checksum dc2f3143f6704cc1b9e285b4475f0aea1adf89ce819e8231702235dba2a7f9ba
RUN ln -sf /opt/bitnami/wildfly/data /app
COPY rootfs/ /
COPY rootfs /
ENV WILDFLY_USERNAME=user \
WILDFLY_PASSWORD=bitnami
ENV BITNAMI_APP_NAME="wildfly" \
BITNAMI_IMAGE_VERSION="10.1.0-r8" \
PATH="/opt/bitnami/java/bin:/opt/bitnami/wildfly/bin:$PATH" \
WILDFLY_JAVA_HOME="" \
WILDFLY_JAVA_OPTS="" \
WILDFLY_MANAGEMENT_HTTP_PORT="9990" \
WILDFLY_PASSWORD="bitnami" \
WILDFLY_PUBLIC_CONSOLE="true" \
WILDFLY_SERVER_AJP_PORT="8009" \
WILDFLY_SERVER_HTTP_PORT="8080" \
WILDFLY_SERVER_INTERFACE="0.0.0.0" \
WILDFLY_USERNAME="user" \
WILDFLY_WILDFLY_HOME="/home/wildfly" \
WILDFLY_WILDFLY_OPTS="-Dwildfly.as.deployment.ondemand=false"
VOLUME ["/bitnami/wildfly"]
EXPOSE 8080 9990
ENTRYPOINT ["/app-entrypoint.sh"]
CMD ["nami", "start", "--foreground", "wildfly"]
CMD ["nami","start","--foreground","wildfly"]

View File

@@ -1,4 +1,5 @@
#!/bin/bash -e
. /opt/bitnami/base/functions
. /opt/bitnami/base/helpers
@@ -7,7 +8,7 @@ check_for_updates &
if [[ "$1" == "nami" && "$2" == "start" ]] || [[ "$1" == "/init.sh" ]]; then
nami_initialize wildfly
info "Starting wildfly..."
info "Starting wildfly... "
fi
exec tini -- "$@"

View File

@@ -1,4 +1,13 @@
{
"javaHome": "{{$global.env.WILDFLY_JAVA_HOME}}",
"javaOpts": "{{$global.env.WILDFLY_JAVA_OPTS}}",
"managementHttpPort": "{{$global.env.WILDFLY_MANAGEMENT_HTTP_PORT}}",
"password": "{{$global.env.WILDFLY_PASSWORD}}",
"publicConsole": "{{$global.env.WILDFLY_PUBLIC_CONSOLE}}",
"serverAjpPort": "{{$global.env.WILDFLY_SERVER_AJP_PORT}}",
"serverHttpPort": "{{$global.env.WILDFLY_SERVER_HTTP_PORT}}",
"serverInterface": "{{$global.env.WILDFLY_SERVER_INTERFACE}}",
"username": "{{$global.env.WILDFLY_USERNAME}}",
"password": "{{$global.env.WILDFLY_PASSWORD}}"
}
"wildflyHome": "{{$global.env.WILDFLY_WILDFLY_HOME}}",
"wildflyOpts": "{{$global.env.WILDFLY_WILDFLY_OPTS}}"
}

View File

@@ -35,8 +35,8 @@ services:
# Supported tags and respective `Dockerfile` links
- [`11`, `11.0.0-r1` (11/Dockerfile)](https://github.com/bitnami/bitnami-docker-wildfly/blob/7b5c7f69bab2a16b0f0f7a88ad00fa8368c006f0/11/Dockerfile)
- [`10`, `10.1.0-r7` (10/Dockerfile)](https://github.com/bitnami/bitnami-docker-wildfly/blob/master/10/Dockerfile)
- [`11`, `11.0.0-r2`, `latest` (11/Dockerfile)](https://github.com/bitnami/bitnami-docker-wildfly/blob/11.0.0-r2/11/Dockerfile)
- [`10`, `10.1.0-r8` (10/Dockerfile)](https://github.com/bitnami/bitnami-docker-wildfly/blob/10.1.0-r8/10/Dockerfile)
Subscribe to project updates by watching the [bitnami/php-fpm GitHub repo](https://github.com/bitnami/bitnami-docker-wildfly).
@@ -388,7 +388,7 @@ docker-compose start wildfly
## 10.0.0-r0
- All volumes have been merged at `/bitnami/tomcat`. Now you only need to mount a single volume at `/bitnami/tomcat` for persistence.
- All volumes have been merged at `/bitnami/wildfly`. Now you only need to mount a single volume at `/bitnami/wildfly` for persistence.
- The logs are always sent to the `stdout` and are no longer collected in the volume.
# Contributing