Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.php > #19212
| From | Custom Log <custom@log.abc> |
|---|---|
| Newsgroups | comp.lang.php |
| Subject | [docker-compose] append directory to PHP_INI_SCAN_DIR environment variable |
| Date | 2022-12-23 17:41 +0100 |
| Organization | Aioe.org NNTP Server |
| Message-ID | <to4lo3$sk2$1@gioia.aioe.org> (permalink) |
$ cat docker-compose.yml
services:
web:
image: php:apache
environment:
- PHP_INI_SCAN_DIR=$HOME/etc/php:$ORIGINAL
$ docker-compose up -d
WARNING: The ORIGINAL variable is not set. Defaulting to a blank string.
How do I recover the original (current) $PHP_INI_SCAN_DIR?
In other words, instead of $ORIGINAL what should I place?
Back to comp.lang.php | Previous | Next — Next in thread | Find similar | Unroll thread
[docker-compose] append directory to PHP_INI_SCAN_DIR environment variable Custom Log <custom@log.abc> - 2022-12-23 17:41 +0100
Re: [docker-compose] append directory to PHP_INI_SCAN_DIR environment variable Arno Welzel <usenet@arnowelzel.de> - 2022-12-23 18:48 +0100
Re: [docker-compose] append directory to PHP_INI_SCAN_DIR environment variable Arno Welzel <usenet@arnowelzel.de> - 2022-12-23 18:51 +0100
csiph-web