mirror of
https://github.com/bitnami/containers.git
synced 2026-03-07 18:17:20 +08:00
Merge pull request #88 from bitnami/remove_debian_8
Removed Debian 8 from root version folders
This commit is contained in:
@@ -1,20 +0,0 @@
|
||||
FROM bitnami/minideb-extras:jessie-r107
|
||||
LABEL maintainer "Bitnami <containers@bitnami.com>"
|
||||
|
||||
# Install required system packages and dependencies
|
||||
RUN install_packages libc6 libexpat1 libffi6 libgmp10 libgnutls-deb0-28 libhogweed2 libldap-2.4-2 libnettle4 libp11-kit0 libpcre3 libsasl2-2 libssl1.0.0 libtasn1-6 zlib1g
|
||||
RUN bitnami-pkg unpack apache-2.4.34-0 --checksum be3de7b24e809b3678f18da08ab220cbca09b458e895d5d6f491afc6f333ebe1
|
||||
RUN ln -sf /opt/bitnami/apache/htdocs /app
|
||||
|
||||
COPY rootfs /
|
||||
ENV APACHE_HTTPS_PORT_NUMBER="443" \
|
||||
APACHE_HTTP_PORT_NUMBER="80" \
|
||||
BITNAMI_APP_NAME="apache" \
|
||||
BITNAMI_IMAGE_VERSION="2.4.34-debian-8-r2" \
|
||||
PATH="/opt/bitnami/apache/bin:$PATH"
|
||||
|
||||
EXPOSE 80 443
|
||||
|
||||
WORKDIR /app
|
||||
ENTRYPOINT ["/app-entrypoint.sh"]
|
||||
CMD ["nami","start","--foreground","apache"]
|
||||
@@ -1,13 +0,0 @@
|
||||
version: '2'
|
||||
|
||||
services:
|
||||
apache:
|
||||
image: 'bitnami/apache:2.4'
|
||||
ports:
|
||||
- '80:80'
|
||||
- '443:443'
|
||||
volumes:
|
||||
- 'apache_data:/bitnami'
|
||||
volumes:
|
||||
apache_data:
|
||||
driver: local
|
||||
@@ -1,4 +0,0 @@
|
||||
{
|
||||
"httpPort": "{{$global.env.APACHE_HTTP_PORT_NUMBER}}",
|
||||
"httpsPort": "{{$global.env.APACHE_HTTPS_PORT_NUMBER}}"
|
||||
}
|
||||
@@ -1,13 +0,0 @@
|
||||
#!/bin/bash -e
|
||||
|
||||
. /opt/bitnami/base/functions
|
||||
. /opt/bitnami/base/helpers
|
||||
|
||||
print_welcome_page
|
||||
|
||||
if [[ "$1" == "nami" && "$2" == "start" ]] || [[ "$1" == "/init.sh" ]]; then
|
||||
nami_initialize apache
|
||||
info "Starting apache... "
|
||||
fi
|
||||
|
||||
exec tini -- "$@"
|
||||
Reference in New Issue
Block a user