mirror of
https://github.com/bitnami/containers.git
synced 2026-03-07 10:07:20 +08:00
11.0.0-r5 release
Update Wildfly to 11.0.0.Final
This commit is contained in:
@@ -1,18 +1,15 @@
|
||||
FROM bitnami/minideb-extras:jessie-r19
|
||||
FROM bitnami/minideb-extras:jessie-r24
|
||||
LABEL maintainer "Bitnami <containers@bitnami.com>"
|
||||
|
||||
|
||||
|
||||
# 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.131-0 --checksum 5b122a36c8ba44e2f9eb8cbb9b62dd87963742c46f85a04019115d2d43c69e33
|
||||
RUN bitnami-pkg unpack wildfly-11.0.0-0 --checksum 210294a19deaba0d3614123086f54b538e4a51fb633498f0ed61226b4048e63f
|
||||
RUN bitnami-pkg install java-1.8.161-0 --checksum eb289afc43eda33d5920294460dc256f6543318506ca5a540bba9073412cfd06
|
||||
RUN bitnami-pkg unpack wildfly-11.0.0-1 --checksum bdcbbf014a52c494bc7b5aecaa0780726dc4f630a97b600a0596f7bfc951f2ee
|
||||
RUN ln -sf /opt/bitnami/wildfly/data /app
|
||||
|
||||
COPY rootfs /
|
||||
|
||||
ENV BITNAMI_APP_NAME="wildfly" \
|
||||
BITNAMI_IMAGE_VERSION="11.0.0-r4" \
|
||||
BITNAMI_IMAGE_VERSION="11.0.0-r5" \
|
||||
PATH="/opt/bitnami/java/bin:/opt/bitnami/wildfly/bin:$PATH" \
|
||||
WILDFLY_JAVA_HOME="" \
|
||||
WILDFLY_JAVA_OPTS="" \
|
||||
@@ -26,9 +23,6 @@ ENV BITNAMI_APP_NAME="wildfly" \
|
||||
WILDFLY_WILDFLY_HOME="/home/wildfly" \
|
||||
WILDFLY_WILDFLY_OPTS="-Dwildfly.as.deployment.ondemand=false"
|
||||
|
||||
|
||||
|
||||
|
||||
EXPOSE 8080 9990
|
||||
|
||||
ENTRYPOINT ["/app-entrypoint.sh"]
|
||||
|
||||
@@ -4,7 +4,6 @@
|
||||
. /opt/bitnami/base/helpers
|
||||
|
||||
print_welcome_page
|
||||
check_for_updates &
|
||||
|
||||
if [[ "$1" == "nami" && "$2" == "start" ]] || [[ "$1" == "/init.sh" ]]; then
|
||||
nami_initialize wildfly
|
||||
|
||||
@@ -28,8 +28,8 @@ $ docker-compose up -d
|
||||
|
||||
# Supported tags and respective `Dockerfile` links
|
||||
|
||||
- [`11`, `11.0.0-r4`, `latest` (11/Dockerfile)](https://github.com/bitnami/bitnami-docker-wildfly/blob/11.0.0-r4/11/Dockerfile)
|
||||
- [`10`, `10.1.0-r9` (10/Dockerfile)](https://github.com/bitnami/bitnami-docker-wildfly/blob/10.1.0-r9/10/Dockerfile)
|
||||
- [`11`, `11.0.0-r5`, `latest` (11/Dockerfile)](https://github.com/bitnami/bitnami-docker-wildfly/blob/11.0.0-r5/11/Dockerfile)
|
||||
- [`10`, `10.1.0-r10` (10/Dockerfile)](https://github.com/bitnami/bitnami-docker-wildfly/blob/10.1.0-r10/10/Dockerfile)
|
||||
|
||||
Subscribe to project updates by watching the [bitnami/php-fpm GitHub repo](https://github.com/bitnami/bitnami-docker-wildfly).
|
||||
|
||||
@@ -354,7 +354,7 @@ Discussions are archived at [bitnami-oss.slackarchive.io](https://bitnami-oss.sl
|
||||
|
||||
# License
|
||||
|
||||
Copyright (c) 2015-2017 Bitnami
|
||||
Copyright (c) 2015-2018 Bitnami
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -1,32 +1,66 @@
|
||||
machine:
|
||||
services:
|
||||
- docker
|
||||
environment:
|
||||
RELEASE_SERIES_LIST: 11,10
|
||||
LATEST_STABLE: 11
|
||||
IMAGE_NAME: wildfly
|
||||
CHART_NAME: wildfly
|
||||
CHART_REPO: https://github.com/bitnami/charts
|
||||
DOCKER_PROJECT: bitnami
|
||||
QUAY_PROJECT: bitnami
|
||||
GCLOUD_PROJECT: bitnami-containers
|
||||
version: 2
|
||||
jobs:
|
||||
build:
|
||||
working_directory: /workdir
|
||||
docker:
|
||||
- image: docker:17.06.0-ce-git
|
||||
environment:
|
||||
RELEASE_SERIES_LIST: "11,10"
|
||||
LATEST_STABLE: "11"
|
||||
IMAGE_NAME: wildfly
|
||||
CHART_NAME: wildfly
|
||||
CHART_REPO: https://github.com/bitnami/charts
|
||||
DOCKER_PROJECT: bitnami
|
||||
IBM_PROJECT: bitnami-bx-test
|
||||
QUAY_PROJECT: bitnami
|
||||
GCLOUD_PROJECT: bitnami-containers
|
||||
|
||||
dependencies:
|
||||
override:
|
||||
- docker info
|
||||
- gcloud version
|
||||
- curl -sL https://raw.githubusercontent.com/bitnami/test-infra/master/circle/docker-pull-cache.sh | bash -
|
||||
steps:
|
||||
- checkout
|
||||
- setup_remote_docker:
|
||||
version: 17.06.0-ce
|
||||
- run:
|
||||
name: Upgrade system packages (workaround - https://github.com/docker-library/docker/issues/72)
|
||||
command: |
|
||||
apk upgrade --no-cache
|
||||
- run:
|
||||
name: Install dependencies
|
||||
command: |
|
||||
apk add --no-cache curl bash coreutils
|
||||
- run:
|
||||
name: Docker info
|
||||
command: |
|
||||
docker version
|
||||
docker info
|
||||
- restore_cache:
|
||||
keys:
|
||||
- cache-{{ .Branch }}
|
||||
paths:
|
||||
- /cache/layers.tar
|
||||
- run:
|
||||
name: Build docker image
|
||||
command: |
|
||||
curl -sL https://raw.githubusercontent.com/bitnami/test-infra/master/circle/docker-image-test.sh | bash -
|
||||
- save_cache:
|
||||
key: cache-{{ .Branch }}-{{ epoch }}
|
||||
paths:
|
||||
- /cache/layers.tar
|
||||
- deploy:
|
||||
name: Publish docker image
|
||||
command: |
|
||||
if [ -n "${CIRCLE_TAG}" ]; then
|
||||
curl -sL https://raw.githubusercontent.com/bitnami/test-infra/master/circle/docker-release-image.sh | bash -
|
||||
elif [ "${CIRCLE_BRANCH}" == "master" ]; then
|
||||
curl -sL https://raw.githubusercontent.com/bitnami/test-infra/master/circle/docker-development-image.sh | bash -
|
||||
fi
|
||||
|
||||
test:
|
||||
override:
|
||||
- curl -sL https://raw.githubusercontent.com/bitnami/test-infra/master/circle/docker-image-test.sh | bash -
|
||||
|
||||
deployment:
|
||||
development:
|
||||
branch: master
|
||||
commands:
|
||||
- curl -sL https://raw.githubusercontent.com/bitnami/test-infra/master/circle/docker-development-image.sh | bash -
|
||||
release:
|
||||
tag: /^[0-9].*-r[0-9]+$/
|
||||
commands:
|
||||
- curl -sL https://raw.githubusercontent.com/bitnami/test-infra/master/circle/docker-release-image.sh | bash -
|
||||
workflows:
|
||||
version: 2
|
||||
build-and-deploy:
|
||||
jobs:
|
||||
- build:
|
||||
filters:
|
||||
branches:
|
||||
only: /.*/
|
||||
tags:
|
||||
only: /^[0-9].*-r[0-9]+$/
|
||||
|
||||
Reference in New Issue
Block a user