mirror of
https://github.com/bitnami/containers.git
synced 2026-03-21 15:29:05 +08:00
2.0.3-ol-7-r6 release
Added DISCOURSE_HOSTNAME to configure the links in notifications
This commit is contained in:
@@ -1,19 +1,20 @@
|
||||
FROM bitnami/oraclelinux-extras:7-r56
|
||||
FROM bitnami/oraclelinux-extras:7-r62
|
||||
LABEL maintainer "Bitnami <containers@bitnami.com>"
|
||||
|
||||
# Install required system packages and dependencies
|
||||
RUN install_packages ImageMagick cyrus-sasl-lib ghostscript glibc imagemagick keyutils-libs krb5-libs libcom_err libcurl libgcc libidn libselinux libssh2 libstdc++ libxml2 libxslt ncurses-libs nspr nss nss-softokn-freebl nss-util openldap openssl-libs pcre postgresql-libs readline sendmail xz-libs zlib
|
||||
RUN install_packages ImageMagick cyrus-sasl-lib ghostscript glibc hostname imagemagick jhead keyutils-libs krb5-libs libcom_err libcurl libgcc libidn libselinux libssh2 libstdc++ libxml2 libxslt ncurses-libs nspr nss nss-softokn-freebl nss-util openldap openssl-libs pcre postgresql-libs readline xz-libs zlib
|
||||
RUN bitnami-pkg install ruby-2.4.4-0 --checksum 8623ed8b7963916ff7f5ecf56c62ce3c144a1d11e56767500d0034c8e4f7e17c
|
||||
RUN bitnami-pkg unpack postgresql-client-9.6.9-1 --checksum b7007d79eb6b282769262c4a2717a50cbfa1150abdbce70d79e6e8b6a42a237c
|
||||
RUN bitnami-pkg install git-2.18.0-1 --checksum e09020e93542133c5f61daaa5a47bdcb94ec5303dd336ae05fa561729786284c
|
||||
RUN bitnami-pkg unpack discourse-sidekiq-2.0.2-0 --checksum f763f46b6fa47834fac0a3dd3e9be514cb5ff09c596617ee929c1e143a309647
|
||||
RUN bitnami-pkg unpack discourse-2.0.3-0 --checksum c29614219dd1d94fa987a57664f3bf079021b94afae66b96a20868c158dc970c
|
||||
RUN bitnami-pkg unpack discourse-sidekiq-2.0.3-4 --checksum 1a26fa115c66cca6c54e29793cc8ca33ddc106bd74e7ff68b0d009c969ee5ab2
|
||||
RUN bitnami-pkg unpack discourse-2.0.3-2 --checksum 7c88ff6ff36c948560b85cee653f5e3bf296d39e092d25d4a873fcc81d5ccd76
|
||||
|
||||
COPY rootfs /
|
||||
ENV BITNAMI_APP_NAME="discourse" \
|
||||
BITNAMI_IMAGE_VERSION="2.0.3-ol-7-r5" \
|
||||
BITNAMI_IMAGE_VERSION="2.0.3-ol-7-r6" \
|
||||
DISCOURSE_EMAIL="user@example.com" \
|
||||
DISCOURSE_HOST="127.0.0.1" \
|
||||
DISCOURSE_HOSTNAME="www.example.com" \
|
||||
DISCOURSE_PASSWORD="bitnami123" \
|
||||
DISCOURSE_PORT="3000" \
|
||||
DISCOURSE_POSTGRESQL_NAME="bitnami_application" \
|
||||
|
||||
@@ -28,6 +28,7 @@ services:
|
||||
- DISCOURSE_POSTGRESQL_NAME=bitnami_application
|
||||
- DISCOURSE_POSTGRESQL_USERNAME=bn_discourse
|
||||
- DISCOURSE_POSTGRESQL_PASSWORD=bitnami1
|
||||
- DISCOURSE_HOSTNAME=www.example.com
|
||||
sidekiq:
|
||||
image: 'bitnami/discourse:2-ol-7'
|
||||
depends_on:
|
||||
@@ -41,6 +42,7 @@ services:
|
||||
- DISCOURSE_POSTGRESQL_PASSWORD=bitnami1
|
||||
- DISCOURSE_HOST=discourse
|
||||
- DISCOURSE_PORT=3000
|
||||
- DISCOURSE_HOSTNAME=www.example.com
|
||||
volumes:
|
||||
postgresql_data:
|
||||
driver: local
|
||||
|
||||
@@ -7,6 +7,7 @@
|
||||
"databaseUser": "{{$global.env.DISCOURSE_POSTGRESQL_USERNAME}}",
|
||||
"databaseUserPassword": "{{$global.env.DISCOURSE_POSTGRESQL_PASSWORD}}",
|
||||
"email": "{{$global.env.DISCOURSE_EMAIL}}",
|
||||
"hostname": "{{$global.env.DISCOURSE_HOSTNAME}}",
|
||||
"password": "{{$global.env.DISCOURSE_PASSWORD}}",
|
||||
"redisHost": "{{$global.env.REDIS_HOST}}",
|
||||
"redisPassword": "{{$global.env.REDIS_PASSWORD}}",
|
||||
|
||||
@@ -5,8 +5,14 @@
|
||||
"databaseUser": "{{$global.env.DISCOURSE_POSTGRESQL_USERNAME}}",
|
||||
"databaseUserPassword": "{{$global.env.DISCOURSE_POSTGRESQL_PASSWORD}}",
|
||||
"discourseHost": "{{$global.env.DISCOURSE_HOST}}",
|
||||
"discourseHostname": "{{$global.env.DISCOURSE_HOSTNAME}}",
|
||||
"discoursePort": "{{$global.env.DISCOURSE_PORT}}",
|
||||
"redisHost": "{{$global.env.REDIS_HOST}}",
|
||||
"redisPassword": "{{$global.env.REDIS_PASSWORD}}",
|
||||
"redisPort": "{{$global.env.REDIS_PORT_NUMBER}}"
|
||||
"redisPort": "{{$global.env.REDIS_PORT_NUMBER}}",
|
||||
"smtpHost": "{{$global.env.SMTP_HOST}}",
|
||||
"smtpPassword": "{{$global.env.SMTP_PASSWORD}}",
|
||||
"smtpPort": "{{$global.env.SMTP_PORT}}",
|
||||
"smtpTls": "{{$global.env.SMTP_TLS}}",
|
||||
"smtpUser": "{{$global.env.SMTP_USER}}"
|
||||
}
|
||||
@@ -28,7 +28,7 @@ $ docker-compose up -d
|
||||
> NOTE: Debian 8 images have been deprecated in favor of Debian 9 images. Bitnami will not longer publish new Docker images based on Debian 8.
|
||||
|
||||
|
||||
* [`2-ol-7`, `2.0.3-ol-7-r5` (2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-discourse/blob/2.0.3-ol-7-r5/2/ol-7/Dockerfile)
|
||||
* [`2-ol-7`, `2.0.3-ol-7-r6` (2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-discourse/blob/2.0.3-ol-7-r6/2/ol-7/Dockerfile)
|
||||
* [`2-debian-9`, `2.0.3-debian-9-r13`, `2`, `2.0.3`, `2.0.3-r13`, `latest` (2/Dockerfile)](https://github.com/bitnami/bitnami-docker-discourse/blob/2.0.3-debian-9-r13/2/Dockerfile)
|
||||
|
||||
Subscribe to project updates by watching the [bitnami/discourse GitHub repo](https://github.com/bitnami/bitnami-docker-discourse).
|
||||
|
||||
Reference in New Issue
Block a user