mirror of
https://github.com/opf/openproject-deploy.git
synced 2026-02-14 16:59:51 +00:00
allow setting common options and show in example
This commit is contained in:
committed by
Oliver Günther
parent
547e527b72
commit
961926294a
@@ -1 +1,16 @@
|
||||
PORT=8080
|
||||
##
|
||||
# All environment variables defined here will only apply if you pass them
|
||||
# to the OpenProject container in docker-compose.yml under x-op-app -> environment.
|
||||
# For the examples here this is already the case.
|
||||
#
|
||||
# Please refer to our documentation to see all possible variables:
|
||||
# https://www.openproject.org/docs/installation-and-operations/configuration/environment/
|
||||
#
|
||||
HTTPS=false
|
||||
OPENPROJECT_HOST__NAME=localhost
|
||||
PORT=127.0.0.1:8080
|
||||
OPENPROJECT_RAILS__RELATIVE__URL__ROOT=
|
||||
IMAP_ENABLED=false
|
||||
DATABASE_URL=postgres://postgres:p4ssw0rd@db/openproject?pool=20&encoding=unicode&reconnect=true
|
||||
RAILS_MIN_THREADS=4
|
||||
RAILS_MAX_THREADS=16
|
||||
|
||||
@@ -20,8 +20,8 @@ x-op-app: &app
|
||||
OPENPROJECT_CACHE__MEMCACHE__SERVER: "cache:11211"
|
||||
OPENPROJECT_RAILS__RELATIVE__URL__ROOT: "${OPENPROJECT_RAILS__RELATIVE__URL__ROOT:-}"
|
||||
DATABASE_URL: "${DATABASE_URL:-postgres://postgres:p4ssw0rd@db/openproject?pool=20&encoding=unicode&reconnect=true}"
|
||||
RAILS_MIN_THREADS: 4
|
||||
RAILS_MAX_THREADS: 16
|
||||
RAILS_MIN_THREADS: ${RAILS_MIN_THREADS:-4}
|
||||
RAILS_MAX_THREADS: ${RAILS_MAX_THREADS:-16}
|
||||
# set to true to enable the email receiving feature. See ./docker/cron for more options
|
||||
IMAP_ENABLED: "${IMAP_ENABLED:-false}"
|
||||
volumes:
|
||||
|
||||
Reference in New Issue
Block a user