mirror of
https://github.com/bitnami/containers.git
synced 2026-03-16 06:49:12 +08:00
11.0.0-r0 release
Update Wildfly to 11.0.0
This commit is contained in:
3
bitnami/wildfly/11/.dockerignore
Normal file
3
bitnami/wildfly/11/.dockerignore
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
.git
|
||||||
|
tests/
|
||||||
|
README.md
|
||||||
29
bitnami/wildfly/11/Dockerfile
Normal file
29
bitnami/wildfly/11/Dockerfile
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
FROM bitnami/minideb-extras:jessie-r13
|
||||||
|
MAINTAINER Bitnami <containers@bitnami.com>
|
||||||
|
|
||||||
|
ENV BITNAMI_IMAGE_VERSION=11.0.0-r0 \
|
||||||
|
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_121-0 --checksum 2743f753fd1ea88bf90352d95694f89ab0a0fb855cf0d1c7b2a6d92835f9ad27
|
||||||
|
|
||||||
|
# Install wildfly
|
||||||
|
RUN bitnami-pkg unpack wildfly-11.0.0-0 --checksum 210294a19deaba0d3614123086f54b538e4a51fb633498f0ed61226b4048e63f
|
||||||
|
RUN ln -sf /opt/bitnami/wildfly/data /app
|
||||||
|
|
||||||
|
COPY rootfs/ /
|
||||||
|
|
||||||
|
ENV WILDFLY_USERNAME=user \
|
||||||
|
WILDFLY_PASSWORD=bitnami
|
||||||
|
|
||||||
|
VOLUME ["/bitnami/wildfly"]
|
||||||
|
|
||||||
|
EXPOSE 8080 9990
|
||||||
|
|
||||||
|
ENTRYPOINT ["/app-entrypoint.sh"]
|
||||||
|
|
||||||
|
CMD ["nami", "start", "--foreground", "wildfly"]
|
||||||
16
bitnami/wildfly/11/docker-compose.yml
Normal file
16
bitnami/wildfly/11/docker-compose.yml
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
version: '2'
|
||||||
|
|
||||||
|
services:
|
||||||
|
wildfly:
|
||||||
|
image: 'bitnami/wildfly:11'
|
||||||
|
ports:
|
||||||
|
- '8080:8080'
|
||||||
|
- '9990:9990'
|
||||||
|
volumes:
|
||||||
|
- 'wildfly_data:/bitnami/wildfly'
|
||||||
|
environment:
|
||||||
|
- WILDFLY_PASSWORD=password
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
wildfly_data:
|
||||||
|
driver: local
|
||||||
13
bitnami/wildfly/11/rootfs/app-entrypoint.sh
Executable file
13
bitnami/wildfly/11/rootfs/app-entrypoint.sh
Executable file
@@ -0,0 +1,13 @@
|
|||||||
|
#!/bin/bash -e
|
||||||
|
. /opt/bitnami/base/functions
|
||||||
|
. /opt/bitnami/base/helpers
|
||||||
|
|
||||||
|
print_welcome_page
|
||||||
|
check_for_updates &
|
||||||
|
|
||||||
|
if [[ "$1" == "nami" && "$2" == "start" ]] || [[ "$1" == "/init.sh" ]]; then
|
||||||
|
nami_initialize wildfly
|
||||||
|
info "Starting wildfly..."
|
||||||
|
fi
|
||||||
|
|
||||||
|
exec tini -- "$@"
|
||||||
4
bitnami/wildfly/11/rootfs/wildfly-inputs.json
Normal file
4
bitnami/wildfly/11/rootfs/wildfly-inputs.json
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"username": "{{$global.env.WILDFLY_USERNAME}}",
|
||||||
|
"password": "{{$global.env.WILDFLY_PASSWORD}}"
|
||||||
|
}
|
||||||
@@ -24,6 +24,13 @@ services:
|
|||||||
- '9990:9990'
|
- '9990:9990'
|
||||||
```
|
```
|
||||||
|
|
||||||
|
# Supported tags and respective `Dockerfile` links
|
||||||
|
|
||||||
|
- [`11`, `11.0.0-r0`, `latest` (11/Dockerfile)](https://github.com/bitnami/bitnami-docker-wildfly/blob/master/11/Dockerfile)
|
||||||
|
- [`10`, `10.1.0-r7` (10/Dockerfile)](https://github.com/bitnami/bitnami-docker-wildfly/blob/master/10/Dockerfile)
|
||||||
|
|
||||||
|
Subscribe to project updates by watching the [bitnami/php-fpm GitHub repo](https://github.com/bitnami/bitnami-docker-wildfly).
|
||||||
|
|
||||||
# Get this image
|
# Get this image
|
||||||
|
|
||||||
The recommended way to get the Bitnami Wildfly Docker Image is to pull the prebuilt image from the [Docker Hub Registry](https://hub.docker.com/r/bitnami/wildfly).
|
The recommended way to get the Bitnami Wildfly Docker Image is to pull the prebuilt image from the [Docker Hub Registry](https://hub.docker.com/r/bitnami/wildfly).
|
||||||
|
|||||||
Reference in New Issue
Block a user