mirror of
https://github.com/casjaysdevdocker/nextcloud
synced 2025-01-18 18:34:21 -05:00
233e048552
bin/entrypoint-nextcloud.sh bin/.gitkeep bin/healthcheck bin/occ config/cont-init.d/00-fix-logs.sh config/cont-init.d/01-fix-uidgid.sh config/cont-init.d/02-fix-perms.sh config/cont-init.d/03-config.sh config/cont-init.d/04-svc-main.sh config/cont-init.d/05-svc-cron.sh config/cont-init.d/06-svc-previewgen.sh config/cont-init.d/07-svc-news-updater.sh config/.gitkeep config/php/conf.d/smbclient.ini config/tpls/bootstrap.php config/tpls/etc/nginx/nginx.conf config/tpls/etc/php/conf.d/apcu.ini config/tpls/etc/php/conf.d/opcache.ini config/tpls/etc/php/conf.d/override.ini config/tpls/etc/php/php-fpm.d/www.conf data/.gitkeep Dockerfile .env.scripts .gitattributes .gitignore rootfs/.gitkeep rootfs/usr/local/bin/entrypoint.sh rootfs/usr/local/bin/.gitkeep rootfs/usr/local/bin/next-cloud rootfs/usr/local/bin/occ rootfs/usr/local/bin/pkmgr rootfs/usr/local/bin/start-nextcloud.sh rootfs/usr/local/etc/ rootfs/usr/local/share/template-files/config/env/
14 lines
543 B
Bash
14 lines
543 B
Bash
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
# GLOBAL enviroment variables
|
|
USER="${USER:-root}"
|
|
LANG="${LANG:-C.UTF-8}"
|
|
TZ="${TZ:-America/New_York}"
|
|
ENV_PORTS="${ENV_PORTS//\/*/}"
|
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
# How to set permissions
|
|
SERVICE_USER="${SERVICE_USER:-}"
|
|
SERVICE_GROUP="${SERVICE_GROUP:-}"
|
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
SERVICE_UID="${SERVICE_UID:-}" # set the user id
|
|
SERVICE_GID="${SERVICE_GID:-}" # set the group id
|